From f4865bd8ae43089be24f35cef1a39258cfbdb65a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Wed, 15 Feb 2006 10:24:37 +0000 Subject: [PATCH] hopefully fixed overlapping bug #162 git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16402 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/expander/ExpanderWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/expander/ExpanderWindow.cpp b/src/apps/expander/ExpanderWindow.cpp index 7a87b1263b..42c5847815 100644 --- a/src/apps/expander/ExpanderWindow.cpp +++ b/src/apps/expander/ExpanderWindow.cpp @@ -113,7 +113,7 @@ ExpanderWindow::ExpanderWindow(BRect frame_rect, const entry_ref *ref, BMessage box->AddChild(fExpandButton); fExpandButton->SetEnabled(false); - rect = BRect(80, 12, Bounds().right - 10, 25); + rect = BRect(rect.right+5, 12, Bounds().right - 10, 25); fSourceText = new BTextControl(rect, "sourceText", "", NULL, new BMessage(MSG_SOURCETEXT), B_FOLLOW_LEFT_RIGHT | B_FOLLOW_TOP); fSourceText->SetDivider(0);