mirror of
https://github.com/Swordfish90/cool-retro-term.git
synced 2025-04-19 17:20:45 +01:00
Fix: update terminal image on resize and font change.
This commit is contained in:
parent
1febce3775
commit
4b87b6e5d6
@ -93,6 +93,9 @@ Item{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onWidthChanged: update();
|
||||||
|
onHeightChanged: update();
|
||||||
|
|
||||||
FontLoader{ id: fontLoader }
|
FontLoader{ id: fontLoader }
|
||||||
Text{id: fontMetrics; text: "B"; visible: false}
|
Text{id: fontMetrics; text: "B"; visible: false}
|
||||||
|
|
||||||
@ -105,6 +108,7 @@ Item{
|
|||||||
height = Qt.binding(function() {return Math.floor(terminalContainer.height / screenScaling);});
|
height = Qt.binding(function() {return Math.floor(terminalContainer.height / screenScaling);});
|
||||||
|
|
||||||
setLineSpacing(lineSpacing);
|
setLineSpacing(lineSpacing);
|
||||||
|
update();
|
||||||
restartBlurredSource();
|
restartBlurredSource();
|
||||||
}
|
}
|
||||||
Component.onCompleted: {
|
Component.onCompleted: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user