Skip to content

Commit

Permalink
fix & update version
Browse files Browse the repository at this point in the history
  • Loading branch information
chenmozhijin committed Mar 7, 2024
1 parent 096d576 commit 9b71a55
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion LDDC.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: Copyright (c) 2024 沉默の金
__version__ = "v0.4.1"
__version__ = "v0.5.0"
import logging
import os
import sys
Expand Down
12 changes: 6 additions & 6 deletions ui/search.ui
Original file line number Diff line number Diff line change
Expand Up @@ -277,12 +277,6 @@
</item>
<item>
<widget class="QLineEdit" name="lyric_types_lineEdit">
<property name="minimumSize">
<size>
<width>300</width>
<height>0</height>
</size>
</property>
<property name="text">
<string/>
</property>
Expand All @@ -300,6 +294,12 @@
</item>
<item>
<widget class="QLineEdit" name="songid_lineEdit">
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
Expand Down
3 changes: 2 additions & 1 deletion ui/search_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ def setupUi(self, search):

self.lyric_types_lineEdit = QLineEdit(self.layoutWidget_3)
self.lyric_types_lineEdit.setObjectName(u"lyric_types_lineEdit")
self.lyric_types_lineEdit.setMinimumSize(QSize(300, 0))
self.lyric_types_lineEdit.setReadOnly(True)

self.horizontalLayout_5.addWidget(self.lyric_types_lineEdit)
Expand All @@ -196,6 +195,8 @@ def setupUi(self, search):

self.songid_lineEdit = QLineEdit(self.layoutWidget_3)
self.songid_lineEdit.setObjectName(u"songid_lineEdit")
sizePolicy.setHeightForWidth(self.songid_lineEdit.sizePolicy().hasHeightForWidth())
self.songid_lineEdit.setSizePolicy(sizePolicy)
self.songid_lineEdit.setReadOnly(True)

self.horizontalLayout_5.addWidget(self.songid_lineEdit)
Expand Down

0 comments on commit 9b71a55

Please sign in to comment.