Skip to content

Commit

Permalink
Disable and hide option to add artwork to video file.
Browse files Browse the repository at this point in the history
This can be reenabled as soon as this is fixed either on the mutagen (quodlibet/mutagen#661) or USDX side (UltraStar-Deluxe/USDX#902).
  • Loading branch information
bohning committed Oct 11, 2024
1 parent 0f1e0ec commit 20c7d63
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/usdb_syncer/gui/forms/SettingsDialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -416,13 +416,19 @@
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_video_embed_artwork">
<property name="enabled">
<bool>false</bool>
</property>
<property name="text">
<string>Embed artwork:</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QCheckBox" name="checkBox_video_embed_artwork">
<property name="enabled">
<bool>false</bool>
</property>
<property name="text">
<string/>
</property>
Expand Down
2 changes: 2 additions & 0 deletions src/usdb_syncer/gui/settings_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ def __init__(self, parent: QWidget, song: UsdbSong | None) -> None:
self._load_settings()
self._setup_path_template()
self._browser = self.comboBox_browser.currentData()
self.label_video_embed_artwork.setVisible(False)
self.checkBox_video_embed_artwork.setVisible(False)
self.groupBox_reencode_video.setVisible(False)

def _populate_comboboxes(self) -> None:
Expand Down

0 comments on commit 20c7d63

Please sign in to comment.