Emit Output::scaleChanged() when the state changes
The scaleChanged signal was overlooked.
This commit is contained in:
parent
c4b9626117
commit
0bf1183286
1 changed files with 3 additions and 0 deletions
|
@ -249,6 +249,9 @@ void Output::setState(const State &state)
|
|||
if (oldGeometry != geometry()) {
|
||||
Q_EMIT geometryChanged();
|
||||
}
|
||||
if (oldState.scale != state.scale) {
|
||||
Q_EMIT scaleChanged();
|
||||
}
|
||||
if (oldState.modes != state.modes) {
|
||||
Q_EMIT modesChanged();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue