From cff292ea298840a04d99359e69cfa00cc8278160 Mon Sep 17 00:00:00 2001
From: Janus <janus2@ymail.com>
Date: Tue, 10 Mar 2015 19:09:27 +0000
Subject: [PATCH] Fix 11892. Standard buttons disposition in Settings
---
src/apps/terminal/PrefWindow.cpp | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/apps/terminal/PrefWindow.cpp b/src/apps/terminal/PrefWindow.cpp
index 763d3d7..bba7a31 100644
a
|
b
|
PrefWindow::PrefWindow(const BMessenger& messenger)
|
47 | 47 | .Add(fAppearanceView = new AppearancePrefView( |
48 | 48 | B_TRANSLATE("Appearance"), fTerminalMessenger)) |
49 | 49 | .AddGroup(B_HORIZONTAL) |
50 | | .Add(fSaveAsFileButton = new BButton("savebutton", |
51 | | B_TRANSLATE("Save to file" B_UTF8_ELLIPSIS), |
52 | | new BMessage(MSG_SAVEAS_PRESSED), B_WILL_DRAW)) |
53 | | .AddGlue() |
54 | | .Add(fRevertButton = new BButton("revertbutton", |
55 | | B_TRANSLATE("Revert"), new BMessage(MSG_REVERT_PRESSED), |
56 | | B_WILL_DRAW)) |
57 | 50 | .Add(fDefaultsButton = new BButton("okbutton", |
58 | 51 | B_TRANSLATE("Defaults"), new BMessage(MSG_DEFAULTS_PRESSED), |
59 | 52 | B_WILL_DRAW)) |
| 53 | .Add(fRevertButton = new BButton("revertbutton", |
| 54 | B_TRANSLATE("Revert"), new BMessage(MSG_REVERT_PRESSED), |
| 55 | B_WILL_DRAW)) |
| 56 | .AddGlue() |
| 57 | .Add(fSaveAsFileButton = new BButton("savebutton", |
| 58 | B_TRANSLATE("Save to file" B_UTF8_ELLIPSIS), |
| 59 | new BMessage(MSG_SAVEAS_PRESSED), B_WILL_DRAW)) |
60 | 60 | .End() |
61 | 61 | .End(); |
62 | 62 | |