Use unicode U+2215 for division

This commit is contained in:
Rafał Dzięgiel
2022-01-17 22:28:17 +01:00
parent 8ba3ca4af6
commit 706c783498
2 changed files with 2 additions and 2 deletions

View File

@@ -165,7 +165,7 @@ class ClapperElapsedTimeButton extends PopoverButtonBase
setInitialState()
{
this.label = '0000/0000';
this.label = '00000000';
}
setFullscreenMode(isFullscreen, isMobileMonitor)

2
src/controls.js vendored
View File

@@ -146,7 +146,7 @@ class ClapperControls extends Gtk.Box
value = value || 0;
const elapsed = Misc.getFormattedTime(value, this.showHours)
+ '/' + this.durationFormatted;
+ '' + this.durationFormatted;
this.elapsedButton.label = elapsed;
}