mirror of
https://github.com/Swordfish90/cool-retro-term.git
synced 2025-01-31 10:11:20 +00:00
Fix: undefined reference after refactoring.
This commit is contained in:
parent
dbdd7f3705
commit
85d637e62e
@ -90,6 +90,7 @@ Item{
|
|||||||
}
|
}
|
||||||
|
|
||||||
QMLTermScrollbar {
|
QMLTermScrollbar {
|
||||||
|
id: kterminalScrollbar
|
||||||
terminal: kterminal
|
terminal: kterminal
|
||||||
anchors.margins: width * 0.5
|
anchors.margins: width * 0.5
|
||||||
width: terminal.fontMetrics.width * 0.75
|
width: terminal.fontMetrics.width * 0.75
|
||||||
@ -99,7 +100,6 @@ Item{
|
|||||||
radius: width * 0.25
|
radius: width * 0.25
|
||||||
opacity: 0.7
|
opacity: 0.7
|
||||||
}
|
}
|
||||||
onOpacityChanged: restartBlurredSource();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
FontLoader{ id: fontLoader }
|
FontLoader{ id: fontLoader }
|
||||||
@ -235,6 +235,10 @@ Item{
|
|||||||
onTerminalFontChanged: _blurredSourceEffect.restartBlurSource();
|
onTerminalFontChanged: _blurredSourceEffect.restartBlurSource();
|
||||||
onRasterizationChanged: _blurredSourceEffect.restartBlurSource();
|
onRasterizationChanged: _blurredSourceEffect.restartBlurSource();
|
||||||
}
|
}
|
||||||
|
Connections {
|
||||||
|
target: kterminalScrollbar
|
||||||
|
onOpacityChanged: _blurredSourceEffect.restartBlurSource();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user