Another in the series of small usability tweaks:
Added a needed ellipsis to the About item Increased the space between the "select current folder" button and the Cancel button in the Destination file panel to prevent accidental clicking git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18449 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -64,7 +64,7 @@ DirectoryFilePanel::Show()
|
||||
fCurrentButton = new BButton(rect, "directoryButton", "Select current",
|
||||
new BMessage(MSG_DIRECTORY), B_FOLLOW_RIGHT | B_FOLLOW_BOTTOM);
|
||||
fCurrentButton->ResizeToPreferred();
|
||||
fCurrentButton->MoveBy(-fCurrentButton->Bounds().Width() - 8, 0);
|
||||
fCurrentButton->MoveBy(-fCurrentButton->Bounds().Width() - 30, 0);
|
||||
background->AddChild(fCurrentButton);
|
||||
fCurrentButton->SetTarget(Messenger());
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ ExpanderWindow::ExpanderWindow(BRect frame, const entry_ref *ref, BMessage *sett
|
||||
fBar = new BMenuBar(BRect(0, 0, Bounds().right, 20), "menu_bar");
|
||||
BMenu *menu = new BMenu("File");
|
||||
BMenuItem *item;
|
||||
menu->AddItem(item = new BMenuItem("About Expander", new BMessage(B_ABOUT_REQUESTED)));
|
||||
menu->AddItem(item = new BMenuItem("About Expander...", new BMessage(B_ABOUT_REQUESTED)));
|
||||
item->SetTarget(be_app_messenger);
|
||||
menu->AddSeparatorItem();
|
||||
menu->AddItem(fSourceItem = new BMenuItem("Set Source...", new BMessage(MSG_SOURCE), 'O'));
|
||||
|
||||
Reference in New Issue
Block a user