Reorder Default and Revert buttons in Appearance.

To match at least a couple other preflets that have Default and Revert buttons
such as Locale, CPU Frequency, Tracker, and Mouse.
This commit is contained in:
John Scipione
2013-03-15 21:55:53 -04:00
parent 5bfc9c7091
commit fe9f33d1c2
+3 -2
View File
@@ -71,11 +71,12 @@ APRWindow::APRWindow(BRect frame)
.Add(tabView)
.Add(BSpaceLayoutItem::CreateVerticalStrut(5))
.Add(BGroupLayoutBuilder(B_HORIZONTAL)
.Add(fDefaultsButton)
.Add(fRevertButton)
.AddGlue()
.Add(fDefaultsButton)
)
.SetInsets(5, 5, 5, 5)
.SetInsets(B_USE_DEFAULT_SPACING, B_USE_DEFAULT_SPACING,
B_USE_DEFAULT_SPACING, B_USE_DEFAULT_SPACING)
);
}