r4085 - in trunk: . beast-gtk



Author: timj
Date: 2006-11-15 10:08:43 -0500 (Wed, 15 Nov 2006)
New Revision: 4085

Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/beast-gtk/bstapp.c
Log:
Wed Nov 15 16:03:00 2006  Tim Janik  <timj gtk org>

        * beast-gtk/bstapp.c: changed accesl to use Ctrl+S for saving
        and Ctrl+D to stop playing songs.




Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2006-11-15 00:18:39 UTC (rev 4084)
+++ trunk/ChangeLog	2006-11-15 15:08:43 UTC (rev 4085)
@@ -1,3 +1,8 @@
+Wed Nov 15 16:03:00 2006  Tim Janik  <timj gtk org>
+
+	* beast-gtk/bstapp.c: changed accesl to use Ctrl+S for saving
+	and Ctrl+D to stop playing songs.
+
 Wed Nov 15 00:25:16 2006  Tim Janik  <timj gtk org>
 
 	* data/bse.pc.in: added gobject to bse's link list.

Modified: trunk/NEWS
===================================================================
--- trunk/NEWS	2006-11-15 00:18:39 UTC (rev 4084)
+++ trunk/NEWS	2006-11-15 15:08:43 UTC (rev 4085)
@@ -1,5 +1,6 @@
 Overview of Changes in BEAST/BSE 0.7.1:
 
+* Fixed libbse symbol exports to allow compilation of custom plugins
 * Fixes for gcc-3.3
 
 Overview of Changes in BEAST/BSE 0.7.0:

Modified: trunk/beast-gtk/bstapp.c
===================================================================
--- trunk/beast-gtk/bstapp.c	2006-11-15 00:18:39 UTC (rev 4084)
+++ trunk/beast-gtk/bstapp.c	2006-11-15 15:08:43 UTC (rev 4085)
@@ -92,7 +92,7 @@
     BST_ACTION_CLOSE_PROJECT,   BST_STOCK_CLOSE, },
 };
 static const GxkStockAction file_save_actions[] = {
-  { N_("_Save"),                NULL,           N_("Write project to disk"),
+  { N_("_Save"),                "<ctrl>S",      N_("Write project to disk"),
     BST_ACTION_SAVE_PROJECT,    BST_STOCK_SAVE, },
   { N_("Save _As..."),          NULL,           N_("Write project to a specific file"),
     BST_ACTION_SAVE_PROJECT_AS, BST_STOCK_SAVE_AS, },
@@ -135,7 +135,7 @@
 static const GxkStockAction playback_actions[] = {
   { N_("_Play"),                "<ctrl>P",      N_("Play or restart playback of the project"),
     BST_ACTION_START_PLAYBACK,  BST_STOCK_PLAY },
-  { N_("_Stop"),                "<ctrl>S",      N_("Stop playback of the project"),
+  { N_("_Stop"),                "<ctrl>D",      N_("Stop playback of the project"),
     BST_ACTION_STOP_PLAYBACK,  BST_STOCK_STOP },
 };
 static const GxkStockAction project_actions[] = {




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]