Browse Source
Merge pull request #6514 from OZtistic/master
Simple resizing of Per-Game configuration window and removal of useless Help question mark button in the title bar
pull/15/merge
Morph
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
8 additions and
1 deletions
-
src/yuzu/configuration/configure_per_game.cpp
-
src/yuzu/configuration/configure_per_game.ui
|
|
|
@ -47,6 +47,8 @@ ConfigurePerGame::ConfigurePerGame(QWidget* parent, u64 title_id, const std::str |
|
|
|
ui->setupUi(this); |
|
|
|
setFocusPolicy(Qt::ClickFocus); |
|
|
|
setWindowTitle(tr("Properties")); |
|
|
|
// remove Help question mark button from the title bar
|
|
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); |
|
|
|
|
|
|
|
ui->addonsTab->SetTitleId(title_id); |
|
|
|
|
|
|
|
|
|
|
|
@ -6,10 +6,15 @@ |
|
|
|
<rect> |
|
|
|
<x>0</x> |
|
|
|
<y>0</y> |
|
|
|
<width>800</width> |
|
|
|
<width>900</width> |
|
|
|
<height>600</height> |
|
|
|
</rect> |
|
|
|
</property> |
|
|
|
<property name="minimumSize"> |
|
|
|
<size> |
|
|
|
<width>900</width> |
|
|
|
</size> |
|
|
|
</property> |
|
|
|
<property name="windowTitle"> |
|
|
|
<string>Dialog</string> |
|
|
|
</property> |
|
|
|
|