[banshee] [ThickClient] Change default UI settings
- From: Gabriel Burt <gburt src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [banshee] [ThickClient] Change default UI settings
- Date: Thu, 2 Sep 2010 22:35:56 +0000 (UTC)
commit 7c9f779911432d3431418cc1d161ab74547c5937
Author: Gabriel Burt <gabriel burt gmail com>
Date: Thu Sep 2 17:34:20 2010 -0500
[ThickClient] Change default UI settings
Hide the context pane, put the browser on top, and make the album grid
large.
.../Banshee.ContextPane/ContextPane.cs | 2 +-
.../FilteredListSourceContents.cs | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/src/Core/Banshee.ThickClient/Banshee.ContextPane/ContextPane.cs b/src/Core/Banshee.ThickClient/Banshee.ContextPane/ContextPane.cs
index 88b0a60..da9abc3 100644
--- a/src/Core/Banshee.ThickClient/Banshee.ContextPane/ContextPane.cs
+++ b/src/Core/Banshee.ThickClient/Banshee.ContextPane/ContextPane.cs
@@ -323,7 +323,7 @@ namespace Banshee.ContextPane
internal static readonly SchemaEntry<bool> ShowSchema = new SchemaEntry<bool>(
"interface", "show_context_pane",
- true,
+ false,
"Show context pane",
"Show context pane for the currently playing track"
);
diff --git a/src/Core/Banshee.ThickClient/Banshee.Sources.Gui/FilteredListSourceContents.cs b/src/Core/Banshee.ThickClient/Banshee.Sources.Gui/FilteredListSourceContents.cs
index f4e32d2..640b871 100644
--- a/src/Core/Banshee.ThickClient/Banshee.Sources.Gui/FilteredListSourceContents.cs
+++ b/src/Core/Banshee.ThickClient/Banshee.Sources.Gui/FilteredListSourceContents.cs
@@ -222,14 +222,14 @@ namespace Banshee.Sources.Gui
if (i > 0 && !last_even_filter) {
Paned new_pane = GetPane (top);
current_pane.Pack2 (new_pane, true, false);
- current_pane.Position = 350;
+ current_pane.Position = top ? 180 : 350;
PersistentPaneController.Control (current_pane, ControllerName (top, i));
current_pane = new_pane;
}
if (last_even_filter) {
current_pane.Pack2 (window, true, false);
- current_pane.Position = 350;
+ current_pane.Position = top ? 180 : 350;
PersistentPaneController.Control (current_pane, ControllerName (top, i));
} else {
current_pane.Pack1 (window, false, false);
@@ -241,7 +241,7 @@ namespace Banshee.Sources.Gui
container.Pack2 (main_scrolled_window, true, false);
browser_container = filter_box;
- container.Position = top ? 175 : 275;
+ container.Position = top ? 375 : 275;
PersistentPaneController.Control (container, ControllerName (top, -1));
ShowPack ();
}
@@ -385,7 +385,7 @@ namespace Banshee.Sources.Gui
public static readonly SchemaEntry<string> BrowserPosition = new SchemaEntry<string> (
"browser", "position",
- "left",
+ "top",
"Artist/Album Browser Position",
"The position of the Artist/Album browser; either 'top' or 'left'"
);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]