3.5.0 won't happen. There just wasn't enough to do for a full release, plus the big stuff is extremely screwy, or is not cross platform (dynamic sash window).
I will focus on getting the project manager done instead.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
- size 9
in drStyleDialog.py there are three arrays with: ["8", "10", "12"
i would insert (in all three lists) the size "9", because on can use (as I) the "courier new" with size 9 ["8", "9",
- Statustext won't be updated, if you move the cursor.
I found (and suspect the reason of this), that the two lines were removed.
self.Bind(wx.EVT_KEY_UP, self.OnPositionChanged)
self.Bind(wx.EVT_LEFT_UP, self.OnPositionChanged)
- saving of styles, I got a traceback:
Traceback (most recent call last):
File "C:\Eigene Dateien\python\drpython\drStyleDialog.py", line 731, in OnSele
ctStyle
self.fgPanel.SetValue(self.foreground)
File "C:\Eigene Dateien\python\drpython\drStyleDialog.py", line 128, in SetVal
ue
r = int(colorstring[1:3], 16)
ValueError: invalid literal for int(): or
- duplicated loaded files:
problem:
every time, i try to open a file (which is alreay loaded) via drag&drop it opens
a new document tab.
#filenames = map(lambda x: x.replace("\\", "/").lower(), filenames)
if this line is commented out, then it works.
And:
I would, if a file is already open, not display a messagedialog;
but call setdocumentto (foundindex) (both: in drag/drop and after fileopen dialog)
if filename in alreadyopen:
not: d = drScrolledMessageDialog.ScrolledMessageDialog(self.window, ('"' + filename + '" is already open.'), "Already Open")
d.ShowModal()
d.Destroy()
but:
i = alreadyopen.index(filename)
self.window.setDocumentTo(i)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I will update 3.4.7 to cvs sometime later on.
3.5.0 won't happen. There just wasn't enough to do for a full release, plus the big stuff is extremely screwy, or is not cross platform (dynamic sash window).
I will focus on getting the project manager done instead.
- size 9
in drStyleDialog.py there are three arrays with: ["8", "10", "12"
i would insert (in all three lists) the size "9", because on can use (as I) the "courier new" with size 9 ["8", "9",
- Statustext won't be updated, if you move the cursor.
I found (and suspect the reason of this), that the two lines were removed.
self.Bind(wx.EVT_KEY_UP, self.OnPositionChanged)
self.Bind(wx.EVT_LEFT_UP, self.OnPositionChanged)
- saving of styles, I got a traceback:
Traceback (most recent call last):
File "C:\Eigene Dateien\python\drpython\drStyleDialog.py", line 731, in OnSele
ctStyle
self.fgPanel.SetValue(self.foreground)
File "C:\Eigene Dateien\python\drpython\drStyleDialog.py", line 128, in SetVal
ue
r = int(colorstring[1:3], 16)
ValueError: invalid literal for int(): or
- duplicated loaded files:
problem:
every time, i try to open a file (which is alreay loaded) via drag&drop it opens
a new document tab.
#filenames = map(lambda x: x.replace("\\", "/").lower(), filenames)
if this line is commented out, then it works.
And:
I would, if a file is already open, not display a messagedialog;
but call setdocumentto (foundindex) (both: in drag/drop and after fileopen dialog)
if filename in alreadyopen:
not: d = drScrolledMessageDialog.ScrolledMessageDialog(self.window, ('"' + filename + '" is already open.'), "Already Open")
d.ShowModal()
d.Destroy()
but:
i = alreadyopen.index(filename)
self.window.setDocumentTo(i)
I forgot to do the size thing, but yes, I should do that.
Thanks, I got the status thing.
The commented out line does not exist in drText.py.
I had trouble reproducing the styles bug.
I also got the suggestion for the set document to. It's done.
>The commented out line does not exist in drText.py.
Oops, my mistake, I inserted it in my drText.py already.
>I had trouble reproducing the styles bug.
I have seen it once, and I'm also not able to
reproduce this bug.