버전 업그레이드

This commit is contained in:
2026-06-18 13:38:27 +09:00
parent a48a4b5fe5
commit ba33a78fec
37 changed files with 3355 additions and 1165 deletions

11
main.py
View File

@@ -119,6 +119,17 @@ QLineEdit, QSpinBox, QDoubleSpinBox {
padding: 6px 8px;
min-height: 38px;
}
/* 터치 화면에서 누르기 쉽도록 스핀박스 ▲▼ 버튼 폭 확대 */
QSpinBox::up-button, QDoubleSpinBox::up-button {
subcontrol-origin: border;
subcontrol-position: top right;
width: 30px;
}
QSpinBox::down-button, QDoubleSpinBox::down-button {
subcontrol-origin: border;
subcontrol-position: bottom right;
width: 30px;
}
QLabel { color: #ffffff; }
QListWidget {
background-color: #222222;