diff options
-rw-r--r-- | src/CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/gui/setup.cpp | 2 | ||||
-rw-r--r-- | src/gui/setup.h | 2 | ||||
-rw-r--r-- | src/gui/setup_audio.cpp | 2 | ||||
-rw-r--r-- | src/gui/setup_colors.cpp | 2 | ||||
-rw-r--r-- | src/gui/setup_interface.cpp | 2 | ||||
-rw-r--r-- | src/gui/setup_joystick.cpp | 2 | ||||
-rw-r--r-- | src/gui/setup_keyboard.cpp | 2 | ||||
-rw-r--r-- | src/gui/setup_players.cpp | 2 | ||||
-rw-r--r-- | src/gui/setup_video.cpp | 2 |
10 files changed, 11 insertions, 11 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 97f7bee4..656b466f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -284,14 +284,14 @@ SET(SRCS gui/setup_audio.h gui/setup_colors.cpp gui/setup_colors.h + gui/setup_interface.cpp + gui/setup_interface.h gui/setup_joystick.cpp gui/setup_joystick.h gui/setup_keyboard.cpp gui/setup_keyboard.h gui/setup_players.cpp gui/setup_players.h - gui/setup_interface.cpp - gui/setup_interface.h gui/setup_video.cpp gui/setup_video.h gui/shortcutwindow.cpp diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp index d5a8e577..9646212a 100644 --- a/src/gui/setup.cpp +++ b/src/gui/setup.cpp @@ -44,7 +44,7 @@ Setup::Setup(): Window(_("Setup")) { setCloseButton(true); - int width = 380; + int width = 385; int height = 360; setContentSize(width, height); diff --git a/src/gui/setup.h b/src/gui/setup.h index 0c4af1d2..c6b6e1f5 100644 --- a/src/gui/setup.h +++ b/src/gui/setup.h @@ -36,11 +36,11 @@ class SetupTab; * * @see Setup_Audio * @see Setup_Colors + * @see Setup_Interface * @see Setup_Joystick * @see Setup_Keyboard * @see Setup_Players * @see Setup_Video - * @see Setup_Interface * * \ingroup GUI */ diff --git a/src/gui/setup_audio.cpp b/src/gui/setup_audio.cpp index 8e9f5e98..7634b6b3 100644 --- a/src/gui/setup_audio.cpp +++ b/src/gui/setup_audio.cpp @@ -75,7 +75,7 @@ Setup_Audio::Setup_Audio(): place(1, 2, musicLabel); place(0, 3, mDownloadMusicCheckBox); - setDimension(gcn::Rectangle(0, 0, 365, 280)); + setDimension(gcn::Rectangle(0, 0, 370, 280)); } void Setup_Audio::apply() diff --git a/src/gui/setup_colors.cpp b/src/gui/setup_colors.cpp index 6b3b3fec..7ebf6bed 100644 --- a/src/gui/setup_colors.cpp +++ b/src/gui/setup_colors.cpp @@ -177,7 +177,7 @@ Setup_Colors::Setup_Colors() : mGradTypeText->setCaption(""); - setDimension(gcn::Rectangle(0, 0, 365, 280)); + setDimension(gcn::Rectangle(0, 0, 370, 280)); } Setup_Colors::~Setup_Colors() diff --git a/src/gui/setup_interface.cpp b/src/gui/setup_interface.cpp index 8949950e..2c4a6583 100644 --- a/src/gui/setup_interface.cpp +++ b/src/gui/setup_interface.cpp @@ -185,7 +185,7 @@ Setup_Interface::Setup_Interface(): place(2, 9, speechLabel, 2); place(4, 9, mSpeechLabel, 2).setPadding(2); - setDimension(gcn::Rectangle(0, 0, 365, 300)); + setDimension(gcn::Rectangle(0, 0, 370, 300)); } Setup_Interface::~Setup_Interface() diff --git a/src/gui/setup_joystick.cpp b/src/gui/setup_joystick.cpp index 7ac5b5ed..de5ddf3f 100644 --- a/src/gui/setup_joystick.cpp +++ b/src/gui/setup_joystick.cpp @@ -55,7 +55,7 @@ Setup_Joystick::Setup_Joystick(): place = h.getPlacer(0, 1); place(0, 0, mCalibrateButton); - setDimension(gcn::Rectangle(0, 0, 365, 75)); + setDimension(gcn::Rectangle(0, 0, 370, 75)); } void Setup_Joystick::action(const gcn::ActionEvent &event) diff --git a/src/gui/setup_keyboard.cpp b/src/gui/setup_keyboard.cpp index 31fd6e39..d3ee3937 100644 --- a/src/gui/setup_keyboard.cpp +++ b/src/gui/setup_keyboard.cpp @@ -105,7 +105,7 @@ Setup_Keyboard::Setup_Keyboard(): place(2, 6, mAssignKeyButton); place(3, 6, mUnassignKeyButton); - setDimension(gcn::Rectangle(0, 0, 365, 280)); + setDimension(gcn::Rectangle(0, 0, 370, 280)); } Setup_Keyboard::~Setup_Keyboard() diff --git a/src/gui/setup_players.cpp b/src/gui/setup_players.cpp index e1948bb0..6fab8bd2 100644 --- a/src/gui/setup_players.cpp +++ b/src/gui/setup_players.cpp @@ -304,7 +304,7 @@ Setup_Players::Setup_Players(): player_relations.addListener(this); - setDimension(gcn::Rectangle(0, 0, 365, 280)); + setDimension(gcn::Rectangle(0, 0, 370, 280)); } Setup_Players::~Setup_Players() diff --git a/src/gui/setup_video.cpp b/src/gui/setup_video.cpp index fd6d5160..aaad729f 100644 --- a/src/gui/setup_video.cpp +++ b/src/gui/setup_video.cpp @@ -267,7 +267,7 @@ Setup_Video::Setup_Video(): place(2, 8, particleDetailLabel); place(3, 8, mParticleDetailField).setPadding(2); - setDimension(gcn::Rectangle(0, 0, 365, 300)); + setDimension(gcn::Rectangle(0, 0, 370, 300)); } Setup_Video::~Setup_Video() |