f-spot r4386 - trunk/src/Widgets
- From: sdelcroix svn gnome org
- To: svn-commits-list gnome org
- Subject: f-spot r4386 - trunk/src/Widgets
- Date: Tue, 16 Sep 2008 19:52:07 +0000 (UTC)
Author: sdelcroix
Date: Tue Sep 16 19:52:06 2008
New Revision: 4386
URL: http://svn.gnome.org/viewvc/f-spot?rev=4386&view=rev
Log:
fix buton visibility
Modified:
trunk/src/Widgets/EditorPage.cs
Modified: trunk/src/Widgets/EditorPage.cs
==============================================================================
--- trunk/src/Widgets/EditorPage.cs (original)
+++ trunk/src/Widgets/EditorPage.cs Tue Sep 16 19:52:06 2008
@@ -127,6 +127,8 @@
if (widgets == null) {
widgets = new VBox (false, 0);
+ widgets.NoShowAll = true;
+ widgets.Show ();
Viewport widgets_port = new Viewport ();
widgets_port.Add (widgets);
Add (widgets_port);
@@ -146,12 +148,13 @@
Button button = new Button (editor.Label);
button.Image = new Image (GtkUtil.TryLoadIcon (FSpot.Global.IconTheme, editor.IconName, 22, (Gtk.IconLookupFlags)0));
button.Clicked += delegate (object o, EventArgs e) { ChooseEditor (current); };
+ button.Show ();
buttons.Add (button);
editor_buttons.Add (editor, button);
}
+ buttons.Show ();
widgets.Add (buttons);
- buttons.ShowAll ();
}
private void ChooseEditor (Editor editor) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]