[banshee] [ItunesPlayerImportDialogs] Allow the file chooser to fill the dialog
- From: Bertrand Lorentz <blorentz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [banshee] [ItunesPlayerImportDialogs] Allow the file chooser to fill the dialog
- Date: Sat, 27 Mar 2010 15:40:27 +0000 (UTC)
commit 55f5bfcc25804906ef7d2dd4b330705b283b2e6c
Author: Bertrand Lorentz <bertrand lorentz gmail com>
Date: Sat Mar 27 16:36:07 2010 +0100
[ItunesPlayerImportDialogs] Allow the file chooser to fill the dialog
Also allow the dialog to be manually resized to a smalled height. Fixes
bgo#613607.
.../ItunesPlayerImportDialogs.cs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/Extensions/Banshee.PlayerMigration/Banshee.PlayerMigration/ItunesPlayerImportDialogs.cs b/src/Extensions/Banshee.PlayerMigration/Banshee.PlayerMigration/ItunesPlayerImportDialogs.cs
index 39d0e73..b226ff4 100644
--- a/src/Extensions/Banshee.PlayerMigration/Banshee.PlayerMigration/ItunesPlayerImportDialogs.cs
+++ b/src/Extensions/Banshee.PlayerMigration/Banshee.PlayerMigration/ItunesPlayerImportDialogs.cs
@@ -165,8 +165,8 @@ namespace Banshee.PlayerMigration
public ItunesMusicDirectoryDialog (string itunes_music_directory) : base ()
{
Title = Catalog.GetString ("Locate iTunes Music Directory");
- HeightRequest = 650;
- WidthRequest = 814;
+ DefaultHeight = 650;
+ DefaultWidth = 814;
Button cancel_button = new Button (Stock.Cancel);
cancel_button.Clicked += delegate { Respond (ResponseType.Cancel); };
@@ -207,7 +207,7 @@ namespace Banshee.PlayerMigration
chooser.ShowAll ();
vbox.PackStart (chooser, true, true, 0);
- VBox.PackStart (vbox, false, false, 0);
+ VBox.PackStart (vbox, true, true, 0);
DefaultResponse = ResponseType.Cancel;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]