Skip to content

Commit db8dc7d

Browse files
committed
Bug: runeffect command should defautl to pyqt window
1 parent 6a6a002 commit db8dc7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demosys/context/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def create_window():
3131
if window(raise_on_error=False):
3232
raise RuntimeError("Attempting to create window twice")
3333

34-
window_cls_name = settings.WINDOW.get('class', 'demosys.context.glfw.Window')
34+
window_cls_name = settings.WINDOW.get('class', 'demosys.context.pyqt.Window')
3535
window_cls = import_string(window_cls_name)
3636
new_window = window_cls()
3737
new_window.print_context_info()

0 commit comments

Comments
 (0)