Hi all,
I'm playing with editwindow.py in PyCrust to change it to a
white-on-black colour scheme. All is well, except that I've managed
to lose the cursor. I guess it's still black-on-black.
I have:
FACES = { 'times' : 'Times New Roman',
'mono' : 'Courier New',
'helv' : 'Arial',
'lucida' : 'Lucida Console',
'other' : 'Comic Sans MS',
'size' : 10,
'lnsize' : 8,
'backcol' : '#010101',
'forecol' : '#FFFFFF',
'calltipbg' : '#FFFFB8',
'calltipfg' : '#404040',
}
and, later,
self.StyleSetSpec(stc.STC_STYLE_DEFAULT,
"face:%(mono)s,size:%(size)d,back:%(backcol)s,fore:%(forecol)s" % \
faces)
where faces is bound to FACES.
Any idea how I can make the cursor have a white foreground?
(I'm very new to wxPython..)
···
--
John.