[gedit-latex] Make ToolView the first tab in the bottom panel



commit c94cead672eaaa16c44b9665edf1f6dc3b52178f
Author: Sven (Sbte) <svenb linux gmail com>
Date:   Thu Oct 20 15:47:23 2011 +0200

    Make ToolView the first tab in the bottom panel
    
    ToolView should be first, because it contains all compilation errors

 latex/config.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/latex/config.py b/latex/config.py
index 2cb4dd9..02cd041 100644
--- a/latex/config.py
+++ b/latex/config.py
@@ -65,10 +65,10 @@ BIBTEX_EXTENSIONS = [".bib"]
 EDITOR_VIEWS = {}
 
 for e in LATEX_EXTENSIONS:
-    EDITOR_VIEWS[e] = {"IssueView": IssueView, "LaTeXOutlineView": LaTeXOutlineView, "LaTeXSymbolMapView": LaTeXSymbolMapView, "ToolView": ToolView}
+    EDITOR_VIEWS[e] = {"ToolView": ToolView, "IssueView": IssueView, "LaTeXOutlineView": LaTeXOutlineView, "LaTeXSymbolMapView": LaTeXSymbolMapView}
 
 for e in BIBTEX_EXTENSIONS:
-    EDITOR_VIEWS[e] = {"IssueView": IssueView, "BibTeXOutlineView": BibTeXOutlineView, "ToolView": ToolView}
+    EDITOR_VIEWS[e] = {"ToolView": ToolView, "IssueView": IssueView, "BibTeXOutlineView": BibTeXOutlineView}
 
 
 # editors



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