mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-30 07:42:23 +02:00
Use unicode U+2215 for division
This commit is contained in:
@@ -165,7 +165,7 @@ class ClapperElapsedTimeButton extends PopoverButtonBase
|
|||||||
|
|
||||||
setInitialState()
|
setInitialState()
|
||||||
{
|
{
|
||||||
this.label = '00∶00/00∶00';
|
this.label = '00∶00∕00∶00';
|
||||||
}
|
}
|
||||||
|
|
||||||
setFullscreenMode(isFullscreen, isMobileMonitor)
|
setFullscreenMode(isFullscreen, isMobileMonitor)
|
||||||
|
2
src/controls.js
vendored
2
src/controls.js
vendored
@@ -146,7 +146,7 @@ class ClapperControls extends Gtk.Box
|
|||||||
value = value || 0;
|
value = value || 0;
|
||||||
|
|
||||||
const elapsed = Misc.getFormattedTime(value, this.showHours)
|
const elapsed = Misc.getFormattedTime(value, this.showHours)
|
||||||
+ '/' + this.durationFormatted;
|
+ '∕' + this.durationFormatted;
|
||||||
|
|
||||||
this.elapsedButton.label = elapsed;
|
this.elapsedButton.label = elapsed;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user