Skip to content

Commit 1a5d92f

Browse files
committed
GUI no longer has to stay on top
1 parent 622cb65 commit 1a5d92f

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

7+
## [0.2.11]
8+
### Changed
9+
* GUI no longer has to stay on top of other windows
10+
711
## [0.2.10]
812
### Fixed
913
* Normalization now adjusts to spread the data over the entire data range
@@ -51,6 +55,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5155
## [0.2.4]
5256
First stable release. Not all features added.
5357

58+
[0.2.11]: https://github.com/jmbhughes/solarannotator/releases/tag/v0.2.11
59+
[0.2.10]: https://github.com/jmbhughes/solarannotator/releases/tag/v0.2.10
5460
[0.2.9]: https://github.com/jmbhughes/solarannotator/releases/tag/v0.2.9
5561
[0.2.8]: https://github.com/jmbhughes/solarannotator/releases/tag/v0.2.8
5662
[0.2.7]: https://github.com/jmbhughes/solarannotator/releases/tag/v0.2.7

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
name='solarannotator',
1212
long_description=long_description,
1313
long_description_content_type='text/markdown',
14-
version='0.2.10',
14+
version='0.2.11',
1515
packages=['solarannotator'],
1616
url='',
1717
license='',

solarannotator/gui.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -515,11 +515,9 @@ def __init__(self, config_path):
515515
QtCore.Qt.Window |
516516
QtCore.Qt.CustomizeWindowHint |
517517
QtCore.Qt.WindowTitleHint |
518-
QtCore.Qt.WindowCloseButtonHint |
519-
QtCore.Qt.WindowStaysOnTopHint
518+
QtCore.Qt.WindowCloseButtonHint
520519
)
521520

522-
523521
def initUI(self):
524522
self._main = QtWidgets.QWidget()
525523
self.setCentralWidget(self._main)
@@ -533,7 +531,6 @@ def initUI(self):
533531
layout.addLayout(self.control_layout)
534532
self._setup_menubar()
535533

536-
537534
def _setup_control_layout(self):
538535
self.control_layout = QtWidgets.QHBoxLayout()
539536
self.controls = ControlWidget(self.annotator)

0 commit comments

Comments
 (0)