Skip to content

Commit

Permalink
fix(local_song_lyrics_db_manager): add window geometry and resize set…
Browse files Browse the repository at this point in the history
…tings
  • Loading branch information
chenmozhijin committed Nov 22, 2024
1 parent d328947 commit 23b2484
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
<ui version="4.0">
<class>LocalSongLyricsDBManager</class>
<widget class="QWidget" name="LocalSongLyricsDBManager">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>640</width>
<height>720</height>
</rect>
</property>
<property name="windowTitle">
<string>歌词关联管理器</string>
</property>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class Ui_LocalSongLyricsDBManager:
def setupUi(self, LocalSongLyricsDBManager):
if not LocalSongLyricsDBManager.objectName():
LocalSongLyricsDBManager.setObjectName("LocalSongLyricsDBManager")
LocalSongLyricsDBManager.resize(640, 720)
icon = QIcon()
icon.addFile(":/LDDC/img/icon/logo.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
LocalSongLyricsDBManager.setWindowIcon(icon)
Expand Down

0 comments on commit 23b2484

Please sign in to comment.