Revision: 828 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=828&view=rev Author: frlan Date: 2009-07-17 16:01:38 +0000 (Fri, 17 Jul 2009)
Log Message: ----------- Backport bugfix for geanyLaTeX toolbar to 0.17.1 tree
Modified Paths: -------------- branches/geany-plugins-0.17.1/geanylatex/src/geanylatex.c
Modified: branches/geany-plugins-0.17.1/geanylatex/src/geanylatex.c =================================================================== --- branches/geany-plugins-0.17.1/geanylatex/src/geanylatex.c 2009-07-17 15:56:34 UTC (rev 827) +++ branches/geany-plugins-0.17.1/geanylatex/src/geanylatex.c 2009-07-17 16:01:38 UTC (rev 828) @@ -92,9 +92,9 @@
const GtkActionEntry format_icons[] = { - { "Italic", GTK_STOCK_ITALIC, NULL, NULL, N_("Marks selected text as italic"), G_CALLBACK(glatex_kb_format_bold) }, + { "Italic", GTK_STOCK_ITALIC, NULL, NULL, N_("Marks selected text as italic"), G_CALLBACK(glatex_kb_format_italic) }, { "Bold", GTK_STOCK_BOLD, NULL, NULL, N_("Marks selected text as bold"), G_CALLBACK(glatex_kb_format_bold) }, - { "Underline", GTK_STOCK_UNDERLINE, NULL, NULL, N_("Underlines selected text"), G_CALLBACK(glatex_kb_format_bold) }, + { "Underline", GTK_STOCK_UNDERLINE, NULL, NULL, N_("Underlines selected text"), G_CALLBACK(glatex_kb_format_typewriter) }, { "Centered", GTK_STOCK_JUSTIFY_CENTER, NULL, NULL, NULL, G_CALLBACK(glatex_kb_format_centering) }, { "Left", GTK_STOCK_JUSTIFY_LEFT, NULL, NULL, NULL, G_CALLBACK(glatex_kb_format_left) }, { "Right", GTK_STOCK_JUSTIFY_RIGHT, NULL, NULL, NULL, G_CALLBACK(glatex_kb_format_right) },
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.