Closed GoogleCodeExporter closed 8 years ago
I can't reproduce this. I am using r266, what version are you on?
Original comment by roberto.alsina
on 15 Feb 2010 at 2:43
I'm using r266 on macosx 10.5
This only happens when there are settings saved anywhere, from a fresh install.
I can see if I can track this some more.
Original comment by filipe.c...@gmail.com
on 15 Feb 2010 at 2:53
I tried deleting the settings first, still it doesn't happen for me. The only
way this could
happen is if there's a call to self.editor.larger() [or smaller] that didn't
call
self.settings.setValue('fontsize')
Original comment by roberto.alsina
on 15 Feb 2010 at 3:03
I think the problem is that fontcolor is not properly initialized.
Original comment by filipe.c...@gmail.com
on 15 Feb 2010 at 3:32
The following patch seems to work for me:
--- main.py (revision 266)
+++ main.py (working copy)
@@ -733,6 +733,8 @@
fontcolor=self.settings.value('fontcolor')
if fontcolor.isValid():
self.setfontcolor(QtGui.QColor(fontcolor.toString()))
+ else:
+ self.setfontcolor(QtGui.QColor('black'))
def loadOpacity(self):
o,ok=self.settings.value('editoropacity').toInt()
Original comment by filipe.c...@gmail.com
on 15 Feb 2010 at 3:35
The bottom issue seems to be that if you have a widget without any stylesheet
and
then you change the font size on that widget and then you set its stylesheet to
change some colors, the font size will be lost. If on the other hand you do the
font
size change after creating any kind of stylesheet the change is kept even if
you then
change the stylesheet. This might very well be a Qt bug with stylesheets. I'm
always
a bit afraid of them.
Original comment by filipe.c...@gmail.com
on 15 Feb 2010 at 3:38
Why not, it makes sense. Committed in r267. Should I mark this fixed?
Original comment by roberto.alsina
on 15 Feb 2010 at 3:40
I think so. At least it works for me.
Original comment by filipe.c...@gmail.com
on 15 Feb 2010 at 3:42
Could be a bug with stylesheets on mac since it doesn't happen for me on Linux.
Anyway,
thanks for the help!
Original comment by roberto.alsina
on 15 Feb 2010 at 3:45
Original issue reported on code.google.com by
filipe.c...@gmail.com
on 15 Feb 2010 at 2:14