mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-24 19:36:17 +00:00
More fixes to make the translation work (#2439)
* more fixes to make the translation work * If size is disabled, it will not appear on the patches screen * Update game_install_dialog.h
This commit is contained in:
parent
32763b7af6
commit
290e127a4f
3 changed files with 11 additions and 8 deletions
|
@ -91,9 +91,11 @@ void CheatsPatches::setupUI() {
|
|||
gameVersionLabel->setAlignment(Qt::AlignLeft);
|
||||
gameInfoLayout->addWidget(gameVersionLabel);
|
||||
|
||||
QLabel* gameSizeLabel = new QLabel(tr("Size: ") + m_gameSize);
|
||||
gameSizeLabel->setAlignment(Qt::AlignLeft);
|
||||
gameInfoLayout->addWidget(gameSizeLabel);
|
||||
if (m_gameSize.left(4) != "0.00") {
|
||||
QLabel* gameSizeLabel = new QLabel(tr("Size: ") + m_gameSize);
|
||||
gameSizeLabel->setAlignment(Qt::AlignLeft);
|
||||
gameInfoLayout->addWidget(gameSizeLabel);
|
||||
}
|
||||
|
||||
// Add a text area for instructions and 'Patch' descriptions
|
||||
instructionsTextEdit = new QTextEdit();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue