mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-07-15 14:55:48 +00:00
Bug fixing
* fix bug with invalid applet and configuration load with newest qt * fix bug with invalid DP configuration * fix bug with invalid HTML tags operations
This commit is contained in:
@ -72,7 +72,7 @@ Item {
|
||||
|
||||
ComboBoxSelector {
|
||||
id: fontWeight
|
||||
model: general.fontWeightModel
|
||||
model: General.fontWeightModel
|
||||
text: i18n("Font weight")
|
||||
value: plasmoid.configuration.fontWeight
|
||||
onValueEdited: cfg_fontWeight = newValue
|
||||
@ -80,7 +80,7 @@ Item {
|
||||
|
||||
ComboBoxSelector {
|
||||
id: fontStyle
|
||||
model: general.fontStyleModel
|
||||
model: General.fontStyleModel
|
||||
text: i18n("Font style")
|
||||
value: plasmoid.configuration.fontStyle
|
||||
onValueEdited: cfg_fontStyle = newValue
|
||||
@ -94,7 +94,7 @@ Item {
|
||||
|
||||
ComboBoxSelector {
|
||||
id: textStyle
|
||||
model: general.textStyleModel
|
||||
model: General.textStyleModel
|
||||
text: i18n("Style")
|
||||
value: plasmoid.configuration.textStyle
|
||||
onValueEdited: cfg_textStyle = newValue
|
||||
|
@ -95,16 +95,16 @@ Item {
|
||||
textFormat: Text.RichText
|
||||
wrapMode: plasmoid.configuration.wrapText ? Text.WordWrap : Text.NoWrap
|
||||
|
||||
horizontalAlignment: general.align[plasmoid.configuration.textAlign]
|
||||
horizontalAlignment: General.align[plasmoid.configuration.textAlign]
|
||||
verticalAlignment: Text.AlignVCenter
|
||||
|
||||
color: plasmoid.configuration.fontColor
|
||||
font.family: plasmoid.configuration.fontFamily
|
||||
font.italic: plasmoid.configuration.fontStyle == "italic" ? true : false
|
||||
font.pointSize: plasmoid.configuration.fontSize
|
||||
font.weight: general.fontWeight[plasmoid.configuration.fontWeight]
|
||||
font.weight: General.fontWeight[plasmoid.configuration.fontWeight]
|
||||
|
||||
style: general.textStyle[plasmoid.configuration.textStyle]
|
||||
style: General.textStyle[plasmoid.configuration.textStyle]
|
||||
styleColor: plasmoid.configuration.textStyleColor
|
||||
|
||||
PlasmaCore.ToolTipArea {
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
|
||||
# common QML constants
|
||||
singleton general 1.0 file:///usr/share/awesomewidgets/qml/general.qml
|
||||
singleton General 1.0 file:///usr/share/awesomewidgets/qml/General.qml
|
||||
|
||||
# custom QML UI classes
|
||||
AboutTab file:///usr/share/awesomewidgets/qml/AboutTab.qml
|
||||
|
@ -58,7 +58,7 @@ Item {
|
||||
backend: awKeys
|
||||
notifyBackend: awActions
|
||||
textArea: textPattern
|
||||
groups: general.awTagRegexp
|
||||
groups: General.awTagRegexp
|
||||
}
|
||||
|
||||
AWExtensions {
|
||||
|
Reference in New Issue
Block a user