[haiku-commits] haiku: hrev45640 - src/apps/debugger/user_interface/gui/inspector_window

  • From: anevilyak@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 7 May 2013 00:48:05 +0200 (CEST)

hrev45640 adds 1 changeset to branch 'master'
old head: e28ba280de24a60949104e5c468a4c8c8687ce8b
new head: 4efba5fd996ef17b9758fc2204cb559bbac5195d
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=4efba5f+%5Ee28ba28

----------------------------------------------------------------------------

4efba5f: Use default spacing for inspector's groups too.

                                      [ Rene Gollent <anevilyak@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev45640
Commit:      4efba5fd996ef17b9758fc2204cb559bbac5195d
URL:         http://cgit.haiku-os.org/haiku/commit/?id=4efba5f
Author:      Rene Gollent <anevilyak@xxxxxxxxx>
Date:        Mon May  6 22:47:17 2013 UTC

----------------------------------------------------------------------------

1 file changed, 2 insertions(+), 2 deletions(-)
.../user_interface/gui/inspector_window/InspectorWindow.cpp       | 4 ++--

----------------------------------------------------------------------------

diff --git 
a/src/apps/debugger/user_interface/gui/inspector_window/InspectorWindow.cpp 
b/src/apps/debugger/user_interface/gui/inspector_window/InspectorWindow.cpp
index e3917f8..1293e2f 100644
--- a/src/apps/debugger/user_interface/gui/inspector_window/InspectorWindow.cpp
+++ b/src/apps/debugger/user_interface/gui/inspector_window/InspectorWindow.cpp
@@ -126,7 +126,7 @@ InspectorWindow::_Init()
 
        BLayoutBuilder::Group<>(this, B_VERTICAL)
                .SetInsets(B_USE_DEFAULT_SPACING)
-               .AddGroup(B_HORIZONTAL, 4.0f)
+               .AddGroup(B_HORIZONTAL)
                        .Add(fAddressInput = new BTextControl("addrInput",
                        "Target Address:", "",
                        new BMessage(MSG_INSPECT_ADDRESS)))
@@ -135,7 +135,7 @@ InspectorWindow::_Init()
                        .Add(fNextBlockButton = new BButton("navNext", ">",
                                new BMessage(MSG_NAVIGATE_NEXT_BLOCK)))
                .End()
-               .AddGroup(B_HORIZONTAL, 4.0f)
+               .AddGroup(B_HORIZONTAL)
                        .Add(fHexMode = new BMenuField("hexMode", "Hex Mode:",
                                hexMenu))
                        .AddGlue()


Other related posts:

  • » [haiku-commits] haiku: hrev45640 - src/apps/debugger/user_interface/gui/inspector_window - anevilyak