ScreenSaver: Just for good measure allow 4 lines of text here.

... just in case a long translation needs an extra line to fit
(in English 3 is enough) and because we've got enough room next
to the screen image to fit another line of text anyway.
This commit is contained in:
John Scipione
2013-09-04 11:10:02 -04:00
parent 28a2faa30a
commit 9bf1ba7dcf
@@ -317,7 +317,7 @@ FadeView::FadeView(const char* name, ScreenSaverSettings& settings)
new BMessage(kMsgFadeCornerChanged), B_FOLLOW_NONE);
BTextView* fadeNowText = new BTextView("FadeNowText", B_WILL_DRAW);
fadeNowText->SetExplicitMinSize(BSize(B_SIZE_UNSET,
3 + textHeight * 3));
4 + textHeight * 4));
fadeNowText->SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
fadeNowText->MakeEditable(false);
fadeNowText->MakeSelectable(false);
@@ -327,7 +327,7 @@ FadeView::FadeView(const char* name, ScreenSaverSettings& settings)
new BMessage(kMsgNeverFadeCornerChanged), B_FOLLOW_NONE);
BTextView* fadeNeverText = new BTextView("FadeNeverText", B_WILL_DRAW);
fadeNeverText->SetExplicitMinSize(BSize(B_SIZE_UNSET,
3 + textHeight * 3));
4 + textHeight * 4));
fadeNeverText->SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
fadeNeverText->MakeEditable(false);
fadeNeverText->MakeSelectable(false);