Skip to content

Commit 57870a7

Browse files
committed
Fix heavy compatibility mode issue
1 parent 13fa984 commit 57870a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Object.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ bool Object::isSelected() const
146146
void Object::settingsChanged(String const& name, var const& value)
147147
{
148148
if (name == "hvcc_mode") {
149-
if (gui && !isHvccCompatible) {
150-
isHvccCompatible = !hvccMode.get() || gui->checkHvccCompatibility();
149+
if (gui) {
150+
isHvccCompatible = hvccMode.get() || gui->checkHvccCompatibility();
151151
}
152152
repaint();
153153
}

0 commit comments

Comments
 (0)