This commit is contained in:
Prohurtz 2022-11-10 14:13:17 -08:00
parent 7b06f0e8eb
commit 8e9d1e8b57
2 changed files with 1 additions and 3 deletions

View File

@ -119,7 +119,7 @@ def main():
osc_receiver_thread.start() osc_receiver_thread.start()
# Create the window # Create the window
window = sg.Window("EyeTrackVR v0.1.7.1", layout, icon='Images/logo.ico', background_color='#292929') window = sg.Window("EyeTrackVR v0.1.7.2", layout, icon='Images/logo.ico', background_color='#292929')
# GUI Render loop # GUI Render loop
while True: while True:

View File

@ -247,8 +247,6 @@ class SettingsWidget:
self.config.gui_blink_sync = values[self.gui_blink_sync] self.config.gui_blink_sync = values[self.gui_blink_sync]
changed = True changed = True
if self.config.gui_blob_maxsize != values[self.gui_blob_maxsize]: if self.config.gui_blob_maxsize != values[self.gui_blob_maxsize]:
self.config.gui_blob_maxsize = values[self.gui_blob_maxsize] self.config.gui_blob_maxsize = values[self.gui_blob_maxsize]
changed = True changed = True