From 16e3532980827bac1e8e5fbc0ab388e20e5290c9 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Tue, 15 Dec 2015 02:27:55 -0500 Subject: [PATCH] fix 'large screen' description --- src/gui/options/OptionsView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/options/OptionsView.cpp b/src/gui/options/OptionsView.cpp index aa0e7430c5..deeca841a7 100644 --- a/src/gui/options/OptionsView.cpp +++ b/src/gui/options/OptionsView.cpp @@ -154,7 +154,7 @@ OptionsView::OptionsView(): scale = new ui::Checkbox(ui::Point(8, 210), ui::Point(Size.X-6, 16), "Large screen", ""); scale->SetActionCallback(new ScaleAction(this)); - tempLabel = new ui::Label(ui::Point(scale->Position.X+Graphics::textwidth(scale->GetText().c_str())+20, scale->Position.Y), ui::Point(Size.X-28, 16), "\bg- Double window size for smaller screens"); + tempLabel = new ui::Label(ui::Point(scale->Position.X+Graphics::textwidth(scale->GetText().c_str())+20, scale->Position.Y), ui::Point(Size.X-28, 16), "\bg- Double window size for larger screens"); tempLabel->Appearance.HorizontalAlign = ui::Appearance::AlignLeft; tempLabel->Appearance.VerticalAlign = ui::Appearance::AlignMiddle; AddComponent(tempLabel); AddComponent(scale);