Fix a problem where going back to fullscreen wasn't working

This commit is contained in:
Raoul Snyman 2018-11-02 21:32:09 -07:00
parent 76d1fefaba
commit 4506e78a1c

View File

@ -215,6 +215,8 @@ class ScreensTab(SettingsTab):
custom_geometry.setWidth(self.width_spin_box.value()) custom_geometry.setWidth(self.width_spin_box.value())
custom_geometry.setHeight(self.height_spin_box.value()) custom_geometry.setHeight(self.height_spin_box.value())
screen.custom_geometry = custom_geometry screen.custom_geometry = custom_geometry
else:
screen.custom_geometry = None
def load(self): def load(self):
""" """