Skip to content

Commit

Permalink
Resized some UI
Browse files Browse the repository at this point in the history
  • Loading branch information
yvt committed Feb 14, 2014
1 parent 5643f09 commit 24768a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Resources/Scripts/Gui/StartupScreen.as
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ namespace spades {
{
spades::ui::CheckBox e(Manager);
e.Caption = _Tr("StartupScreen", "Fullscreen Mode");
e.Bounds = AABB2(230.f, 0.f, 150.f, 24.f);
e.Bounds = AABB2(230.f, 0.f, 200.f, 24.f);
HelpHandler(helpView,
_Tr("StartupScreen", "By running in fullscreen mode OpenSpades occupies the "
"screen, making it easier for you to concentrate on playing the game.")).Watch(e);
Expand All @@ -1039,7 +1039,7 @@ namespace spades {
{
spades::ui::RadioButton e(Manager);
e.Caption = _Tr("StartupScreen", "OpenGL");
e.Bounds = AABB2(100.f, 30.f, 100.f, 24.f);
e.Bounds = AABB2(100.f, 30.f, 140.f, 24.f);
e.GroupName = "driver";
HelpHandler(helpView,
_Tr("StartupScreen", "OpenGL renderer uses your computer's graphics "
Expand All @@ -1051,7 +1051,7 @@ namespace spades {
{
spades::ui::RadioButton e(Manager);
e.Caption = _Tr("StartupScreen", "Software");
e.Bounds = AABB2(210.f, 30.f, 100.f, 24.f);
e.Bounds = AABB2(250.f, 30.f, 140.f, 24.f);
e.GroupName = "driver";
HelpHandler(helpView,
_Tr("StartupScreen", "Software renderer uses CPU to generate the game "
Expand Down

0 comments on commit 24768a9

Please sign in to comment.