]> git.entuzijast.net Git - imunes.git/commitdiff
Fix the bug in configuration file editor which caused non-visible top
authormarko <marko>
Sat, 30 Jul 2005 02:01:58 +0000 (02:01 +0000)
committermarko <marko>
Sat, 30 Jul 2005 02:01:58 +0000 (02:01 +0000)
lines of the config to be truncated.

Bug found by:
Submitted by:
Requested by:
Reviewed by:
Approved by:
Obtained from:

editor.tcl

index 4c47aa55078e4d68859829ac819d74ccae58ea9b..0662067be5431a64e271b938ccc4ee847a662ade 100755 (executable)
@@ -1315,7 +1315,7 @@ proc customConfigApply { w node } {
     global changed
 
     set newcmd [$w.ftop.cmd get]
-    set newconf [split [$w.text get @0,0 end] {\r}]
+    set newconf [split [$w.text get 0.0 end] {\r}]
     while { [lindex $newconf end] == {} } {
        set newconf [lreplace $newconf end end]
     }