mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-31 00:11:59 +02:00
Do not show "Ends at" text when player is stopped
This commit is contained in:
@@ -127,7 +127,9 @@ class ClapperRevealerTop extends CustomRevealer
|
||||
this.currentTime = new Gtk.Label(timeLabelOpts);
|
||||
this.currentTime.add_css_class('osdtime');
|
||||
|
||||
this.endTime = new Gtk.Label(timeLabelOpts);
|
||||
this.endTime = new Gtk.Label(
|
||||
Object.assign(timeLabelOpts, { visible: false })
|
||||
);
|
||||
this.endTime.add_css_class('osdendtime');
|
||||
|
||||
this.revealerGrid.attach(this.mediaTitle, 0, 0, 1, 1);
|
||||
|
Reference in New Issue
Block a user