SF.net SVN: geany:[3273] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Sun Nov 23 16:24:17 UTC 2008


Revision: 3273
          http://geany.svn.sourceforge.net/geany/?rev=3273&view=rev
Author:   eht16
Date:     2008-11-23 16:24:16 +0000 (Sun, 23 Nov 2008)

Log Message:
-----------
Update the Document menu when Line Breaking/Wrapping were toggled by a keybinding.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/keybindings.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-11-23 16:07:17 UTC (rev 3272)
+++ trunk/ChangeLog	2008-11-23 16:24:16 UTC (rev 3273)
@@ -5,6 +5,9 @@
  * src/notebook.c:
    Add previously removed tab close icon sizing code for non-Windows
    systems.
+ * src/keybindings.c:
+   Update the Document menu when Line Breaking/Wrapping were toggled
+   by a keybinding.
 
 
 2008-11-22  Frank Lanitz  <frank(at)frank(dot)uvena(dot)de>

Modified: trunk/src/keybindings.c
===================================================================
--- trunk/src/keybindings.c	2008-11-23 16:07:17 UTC (rev 3272)
+++ trunk/src/keybindings.c	2008-11-23 16:24:16 UTC (rev 3273)
@@ -1686,9 +1686,11 @@
 			break;
 		case GEANY_KEYS_DOCUMENT_LINEBREAK:
 			on_line_breaking1_activate(NULL, NULL);
+			ui_document_show_hide(doc);
 			break;
 		case GEANY_KEYS_DOCUMENT_LINEWRAP:
 			on_line_wrapping1_toggled(NULL, NULL);
+			ui_document_show_hide(doc);
 			break;
 		case GEANY_KEYS_DOCUMENT_RELOADTAGLIST:
 			document_update_tag_list(doc, TRUE);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list