[latexila] Fix the right math delimiters



commit 1cd218dd80c1c18d64e2423f6d81a764bb8f0f1b
Author: SÃbastien Wilmet <swilmet src gnome org>
Date:   Mon Sep 26 12:20:39 2011 +0200

    Fix the right math delimiters

 src/latex_menu.vala |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/latex_menu.vala b/src/latex_menu.vala
index 0ab23be..5494e56 100644
--- a/src/latex_menu.vala
+++ b/src/latex_menu.vala
@@ -1450,12 +1450,12 @@ public class LatexMenu : Gtk.ActionGroup
 
     public void on_math_right_delimiter_1 ()
     {
-        text_buffer_insert ("\\right( ", "");
+        text_buffer_insert ("\\right) ", "");
     }
 
     public void on_math_right_delimiter_2 ()
     {
-        text_buffer_insert ("\\right[ ", "");
+        text_buffer_insert ("\\right] ", "");
     }
 
     public void on_math_right_delimiter_3 ()
@@ -1470,12 +1470,12 @@ public class LatexMenu : Gtk.ActionGroup
 
     public void on_math_right_delimiter_5 ()
     {
-        text_buffer_insert ("\\right) ", "");
+        text_buffer_insert ("\\right( ", "");
     }
 
     public void on_math_right_delimiter_6 ()
     {
-        text_buffer_insert ("\\right] ", "");
+        text_buffer_insert ("\\right[ ", "");
     }
 
     public void on_math_right_delimiter_7 ()



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