M setup.py +1 -1
@@ 6,7 6,7 @@ def read(fname):
setup(
name = "WinRustler",
- version = "0.9.2", # Keep in sync with winrustler/__init__.py
+ version = "0.9.3", # Keep in sync with winrustler/__init__.py
author = "somebody",
author_email = "somebody@froghat.ca",
description = ("Thing for rustling windows in Windows."),
M winrustler/__init__.py +1 -1
@@ 1,1 1,1 @@
-__version__ = '0.9.2' # Keep in sync with ../setup.py
+__version__ = '0.9.3' # Keep in sync with ../setup.py
M winrustler/ui/widgets/rustlerwindow.py +3 -3
@@ 27,8 27,8 @@ class RustlerWindow(QDialog):
self.setWindowTitle("WinRustler")
self._select = WindowSelect(self)
- self._match_select = QPushButton(icon('1f984.png'), "", self, shortcut="Alt+m")
- self._match_select.clicked.connect(self._show_match)
+ #self._match_select = QPushButton(icon('1f984.png'), "", self, shortcut="Alt+m")
+ #self._match_select.clicked.connect(self._show_match)
self._move = MoveControls(self)
self._fade = FadeControls(self)
@@ 49,7 49,7 @@ class RustlerWindow(QDialog):
self._layout = QVBoxLayout(self)
self._select_layout = QHBoxLayout()
self._select_layout.addWidget(self._select, stretch=1)
- self._select_layout.addWidget(self._match_select)
+ #self._select_layout.addWidget(self._match_select)
self._layout.addLayout(self._select_layout)
self._layout.addWidget(self._function_tab)
self._layout.addWidget(self._bb)