flika-org / flika

An interactive image processing program for biologists written in Python.
http://flika-org.github.io/
MIT License
22 stars 1 forks source link

running start_flika() multiple times leads to expanding menus #14

Closed kyleellefsen closed 7 years ago

kyleellefsen commented 7 years ago

If you open a command prompt, navigate to flika's directory, start python, and run:

from flika import *
start_flika()
start_flika()

The top level menu items "Image, Process" get added over and over again.

BrettJSettle commented 7 years ago

Assert statement in the FlikaApplication init checks if the main gui has already started, and a check in setup_menus to only make menus once.