Skip to content

Commit

Permalink
Animated display plugin: Set minimum cover size to 1
Browse files Browse the repository at this point in the history
Fixes #2926
  • Loading branch information
frestr committed Aug 20, 2018
1 parent 62e0673 commit 7591b83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quodlibet/quodlibet/ext/events/animosd/prefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def build_display_widget():
hb = Gtk.HBox(spacing=6)
coversize = Gtk.SpinButton(
adjustment=Gtk.Adjustment.new(
self.Conf.coversize, 120, 600, 1, 10, 0),
self.Conf.coversize, 1, 600, 1, 10, 0),
climb_rate=1, digits=0)
coversize.set_numeric(True)
coversize.connect('value-changed', change_coversize)
Expand Down

0 comments on commit 7591b83

Please sign in to comment.