|
From: SourceForge.net <no...@so...> - 2005-12-16 12:19:30
|
Bugs item #1382388, was opened at 2005-12-16 15:19 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=100588&aid=1382388&group_id=588 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: text area and syntax packages Group: None Status: Open Resolution: None Priority: 5 Submitted By: Denis Koryavov (dkoryavov) Assigned to: Nobody/Anonymous (nobody) Summary: Incorrect Python code indentation Initial Comment: Hello. I have found a little bug: processing the "Indent Lines" command (CTRL + I) to the Python code causes the wrong identation of selected text. Example: Before: if (row +1) > self.grid.GetNumberRows(): self.table.data.append(obj) self.grid.AppendRows(1, True) else: self.grid.SetCellValue(row, 0, fileName) self.table.data.append(obj) self.grid.AutoSizeColumn(0, True) after: if (row +1) > self.grid.GetNumberRows(): self.table.data.append(obj) self.grid.AppendRows(1, True) else: self.grid.SetCellValue(row, 0, fileName) self.table.data.append(obj) self.grid.AutoSizeColumn(0, True) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=100588&aid=1382388&group_id=588 |