Skip to content

Commit

Permalink
disable console, improve startup
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Oct 24, 2019
1 parent c233182 commit 2644b1c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .appveyor/shapeout2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ exe = EXE(pyz,
strip=False,
upx=False,
icon=icofile,
console=True)
console=False)

coll = COLLECT(exe,
a.binaries,
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
2.0.0a20
- fix missing source files in previous release
2.0.0a19
- fix plot matrix: size and buttons of elements
- populate help menu
Expand Down
3 changes: 2 additions & 1 deletion shapeout2/gui/ana_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ def __init__(self, *args, **kwargs):
path_ui = pkg_resources.resource_filename(
"shapeout2.gui", "ana_filter.ui")
uic.loadUi(path_ui, self)
self.setUpdatesEnabled(False)
self._init_box_filters()

self.pushButton_apply.clicked.connect(self.write_filter)
self.pushButton_reset.clicked.connect(self.update_content)
self.comboBox_filters.currentIndexChanged.connect(self.update_content)
Expand All @@ -32,6 +32,7 @@ def __init__(self, *args, **kwargs):
self.update_content()
# current Shape-Out 2 pipeline
self._pipeline = None
self.setUpdatesEnabled(True)

def _init_box_filters(self, show_features=SHOW_FEATURES):
self._box_range_controls = {}
Expand Down

0 comments on commit 2644b1c

Please sign in to comment.