浏览代码

fix time label in preview

Noah Vogt 1 年之前
父节点
当前提交
a617d992dc
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      recording/gui.py

+ 1 - 0
recording/gui.py

@@ -163,6 +163,7 @@ class WaveAndSheetPreviewChooserGUI(
         mins = secs // 60
         secs %= 60
         time_label = QLabel(f"00:00 / {mins:02}:{secs:02}")
+        time_label.setMinimumSize(QSize(90, 10))
         return time_label
 
     def play_audio(self, rel_path: str) -> None: