Revision: 1715
http://gtkpod.svn.sourceforge.net/gtkpod/?rev=1715&view=rev
Author: jcsjcs
Date: 2007-10-03 13:40:27 -0700 (Wed, 03 Oct 2007)
Log Message:
-----------
* src/details.c
data/gtkpod.glade: fixed issues with details window:
1) window is shown before resize, which gives an annoying
flickering
2) if Misc is the selected panel, the it is not restored
next time
Thanks to Mario Rossi.
Modified Paths:
--------------
gtkpod/trunk/ChangeLog_detailed
gtkpod/trunk/data/gtkpod.glade
gtkpod/trunk/src/details.c
Modified: gtkpod/trunk/ChangeLog_detailed
===================================================================
--- gtkpod/trunk/ChangeLog_detailed 2007-10-01 18:35:51 UTC (rev 1714)
+++ gtkpod/trunk/ChangeLog_detailed 2007-10-03 20:40:27 UTC (rev 1715)
@@ -1,3 +1,13 @@
+2007-10-04 Jorg Schuler <jcsjcs at users.sourceforge.net>
+
+ * src/details.c
+ data/gtkpod.glade: fixed issues with details window:
+ 1) window is shown before resize, which gives an annoying
+ flickering
+ 2) if Misc is the selected panel, the it is not restored
+ next time
+ Thanks to Mario Rossi.
+
2007-09-30 Todd Zullinger <tmzullinger at users.sourceforge.net>
* configure.in
Modified: gtkpod/trunk/data/gtkpod.glade
===================================================================
--- gtkpod/trunk/data/gtkpod.glade 2007-10-01 18:35:51 UTC (rev 1714)
+++ gtkpod/trunk/data/gtkpod.glade 2007-10-03 20:40:27 UTC (rev 1715)
@@ -14126,7 +14126,6 @@
</widget>
<widget class="GtkWindow" id="details_window">
- <property name="visible">True</property>
<property name="title" translatable="yes">Details</property>
<property name="type">GTK_WINDOW_TOPLEVEL</property>
<property name="window_position">GTK_WIN_POS_NONE</property>
Modified: gtkpod/trunk/src/details.c
===================================================================
--- gtkpod/trunk/src/details.c 2007-10-01 18:35:51 UTC (rev 1714)
+++ gtkpod/trunk/src/details.c 2007-10-03 20:40:27 UTC (rev 1715)
@@ -1659,7 +1659,7 @@
/* set notebook page */
w = gtkpod_xml_get_widget (detail->xml, "details_notebook");
page = prefs_get_int (DETAILS_WINDOW_NOTEBOOK_PAGE);
- if ((page >= 0) && (page <= 3))
+ if ((page >= 0) && (page <= 4))
gtk_notebook_set_current_page (GTK_NOTEBOOK (w), page);
/* set default size */
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2