Skip to content

Commit cf1e599

Browse files
committed
Release Logic Changes
프로그램 종료 시 검색창도 종료하도록 변경
1 parent 0cfbd42 commit cf1e599

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

main.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,10 @@ def closeEvent(self, QCloseEvent):
206206
'keyword': keyword, 'search_type': comboBox}
207207
self.save_data(data, 'user_save.dat')
208208

209+
210+
if hasattr(self, 'searchWindow'):
211+
self.searchWindow.close()
212+
209213
self.deleteLater()
210214
QCloseEvent.accept()
211215

main.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</rect>
1212
</property>
1313
<property name="windowTitle">
14-
<string>DCINSIDE ARTICLE FINDER</string>
14+
<string>DCINSIDE ARTICLE FINDER v0.152 Beta</string>
1515
</property>
1616
<property name="windowIcon">
1717
<iconset>

ui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def setupUi(self, MainWindow):
188188

189189
def retranslateUi(self, MainWindow):
190190
_translate = QtCore.QCoreApplication.translate
191-
MainWindow.setWindowTitle(_translate("MainWindow", "DCINSIDE ARTICLE FINDER"))
191+
MainWindow.setWindowTitle(_translate("MainWindow", "DCINSIDE ARTICLE FINDER v0.152 Beta"))
192192
self.comboBox.setItemText(0, _translate("MainWindow", "제목+내용"))
193193
self.comboBox.setItemText(1, _translate("MainWindow", "제목"))
194194
self.comboBox.setItemText(2, _translate("MainWindow", "내용"))

0 commit comments

Comments
 (0)