So I realized I didn't actually push the zoom in / out code yet.
Tweaking it to make it outline specific... the active widget border
coloring is causing trouble, clearing style settings. I think it can
be eliminated...
I know the current implementation replaces a previous implementation
which was implicated in the scroll jumping bug, but the point is there
should be no implementation at all, it should be pure style sheet, with
no .setStyleSheet calls required (apart from the initial one of course).
This achieves that:
@focused-border-style = none or solid or whatever
@focused-border-width = 1px
@focused-border-focus-color = blue
@focused-border-unfocus-color = gray
QTextEdit#log-widget, LeoQTreeWidget#treeWidget, QTextEdit#richTextEdit {
border-style: @focused-border-style;
border-width: @focused-border-width;
border-color: @focused-border-unfocus-color;
}
QTextEdit:focus#log-widget, LeoQTreeWidget:focus#treeWidget,
QTextEdit:focus#richTextEdit {
border-style: @focused-border-style;
border-width: @focused-border-width;
border-color: @focused-border-focus-color;
}
Just wanted to get that out there... :)
Cheers -Terry
--
You received this message because you are subscribed to the Google Groups
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/leo-editor?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.