[banshee] Add label to make source-specific dropdown clearer
- From: Gabriel Burt <gburt src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [banshee] Add label to make source-specific dropdown clearer
- Date: Fri, 29 Jan 2010 02:39:42 +0000 (UTC)
commit 95e9c6a5d7599901d0103eeda335805f4284b96a
Author: Gabriel Burt <gabriel burt gmail com>
Date: Thu Jan 28 18:39:20 2010 -0800
Add label to make source-specific dropdown clearer
.../Banshee.Preferences.Gui/NotebookPage.cs | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
---
diff --git a/src/Core/Banshee.ThickClient/Banshee.Preferences.Gui/NotebookPage.cs b/src/Core/Banshee.ThickClient/Banshee.Preferences.Gui/NotebookPage.cs
index 4331311..7b89d76 100644
--- a/src/Core/Banshee.ThickClient/Banshee.Preferences.Gui/NotebookPage.cs
+++ b/src/Core/Banshee.ThickClient/Banshee.Preferences.Gui/NotebookPage.cs
@@ -70,8 +70,16 @@ namespace Banshee.Preferences.Gui
notebook.ShowTabs = false;
notebook.Show ();
- PageComboBox page_combo = new PageComboBox (page.ChildPages, notebook);
- PackStart (page_combo, false, false, 0);
+ var hbox = new HBox () { Spacing = 6 };
+ // FIXME this shouldn't be hard-coded to 'Source:', but this is the only
+ // user of this code atm...
+ var page_label = new Label (Mono.Unix.Catalog.GetString ("Source:"));
+ var page_combo = new PageComboBox (page.ChildPages, notebook);
+ hbox.PackStart (page_label, false, false, 0);
+ hbox.PackStart (page_combo, true, true, 0);
+ hbox.ShowAll ();
+
+ PackStart (hbox, false, false, 0);
HSeparator sep = new HSeparator ();
sep.Show ();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]