Changeset 4154
- Timestamp:
- 06/17/08 18:15:32 (5 months ago)
- Files:
-
- trunk/ide/Editor.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ide/Editor.py
r3515 r4154 793 793 currEditor = self.CurrentEditor 794 794 dlg = LineNumberDlg(self) 795 dlg.txtLine.Value = currEditor.LineNumber + 1795 dlg.txtLine.Value = currEditor.LineNumber 796 796 dlg.txtLine.Min = 1 797 797 dlg.txtLine.Max = currEditor.LineCount … … 800 800 dlg.show() 801 801 if dlg.Accepted: 802 currEditor.LineNumber = dlg.txtLine.Value - 1802 currEditor.LineNumber = dlg.txtLine.Value 803 803 dlg.release() 804 804
