[Goodies-commits] r3181 - in ristretto/trunk: . src

Stephan Arts stephan at xfce.org
Sat Sep 8 12:43:49 CEST 2007


Author: stephan
Date: 2007-09-08 10:43:49 +0000 (Sat, 08 Sep 2007)
New Revision: 3181

Modified:
   ristretto/trunk/ChangeLog
   ristretto/trunk/src/main.c
Log:
Update ChangeLog
Fix toggling slideshow when fullscreen


Modified: ristretto/trunk/ChangeLog
===================================================================
--- ristretto/trunk/ChangeLog	2007-09-08 10:27:57 UTC (rev 3180)
+++ ristretto/trunk/ChangeLog	2007-09-08 10:43:49 UTC (rev 3181)
@@ -1,3 +1,12 @@
+2007-09-08: Release 0.0.4
+	* src/main.c:
+	  - Toggle thumbnail-bar visibility (Bug #3507) (Ctrl-T)
+	  - Add button to clear the recent-documents list.
+	  - Toggle slideshow when fullscreen.
+	* src/picture_viewer.c:
+	  - Improve zooming functionality, using scroll-wheel 
+	    should no longer freeze the window.
+	
 2007-09-02: Release 0.0.3
 	* src/main.c:
 	  Toggle toolbar visibility (Bug #3499)

Modified: ristretto/trunk/src/main.c
===================================================================
--- ristretto/trunk/src/main.c	2007-09-08 10:27:57 UTC (rev 3180)
+++ ristretto/trunk/src/main.c	2007-09-08 10:43:49 UTC (rev 3181)
@@ -687,6 +687,21 @@
     {
         switch(event->keyval)
         {
+            case GDK_F5:
+                if(playing == TRUE)
+                {
+                    gtk_widget_show(menu_item_play);
+                    gtk_widget_hide(menu_item_pause);
+                    playing = FALSE;
+                }
+                else
+                {
+                    gtk_widget_hide(menu_item_play);
+                    gtk_widget_show(menu_item_pause);
+                    playing = TRUE;
+                }
+                rstto_navigator_set_running(navigator, playing);
+                break;
             case GDK_F11:
                 if(window_fullscreen)
                     gtk_window_unfullscreen(window);




More information about the Goodies-commits mailing list