Raymond Weitekamp commited on
Commit
3d99058
·
1 Parent(s): 8cca7aa

Fix double initialization of viewer

Browse files
Files changed (1) hide show
  1. cadviewer.py +0 -3
cadviewer.py CHANGED
@@ -168,8 +168,6 @@ def shutdown_all():
168
  raise
169
 
170
 
171
- app.on_startup(startup_all)
172
-
173
  button_frac = 0.05
174
 
175
 
@@ -225,7 +223,6 @@ keyboard = ui.keyboard(on_key=handle_key)
225
  app.on_shutdown(shutdown_all) # register shutdown handler
226
 
227
  def main():
228
- startup_all()
229
  ui.run(
230
  native=False,
231
  host='0.0.0.0',
 
168
  raise
169
 
170
 
 
 
171
  button_frac = 0.05
172
 
173
 
 
223
  app.on_shutdown(shutdown_all) # register shutdown handler
224
 
225
  def main():
 
226
  ui.run(
227
  native=False,
228
  host='0.0.0.0',