summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-03-03 11:36:42 +0000
committerRobin Gareus <robin@gareus.org>2013-03-03 11:36:42 +0000
commit82be348d429b97f3e223b3a5b1c6807d23fcdaa0 (patch)
tree36d4c9db40d720aca78af425880376e0f3a2d403 /gtk2_ardour
parent6c8f77c31b708bffd4a763e3891de33557b24d4e (diff)
replace unicode dash with (monospace) minus.
git-svn-id: svn://localhost/ardour2/branches/3.0@14122 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/audio_clock.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/audio_clock.cc b/gtk2_ardour/audio_clock.cc
index 2eaa4be609..b70523b62f 100644
--- a/gtk2_ardour/audio_clock.cc
+++ b/gtk2_ardour/audio_clock.cc
@@ -1046,7 +1046,7 @@ AudioClock::set_frames (framepos_t when, bool /*force*/)
bool negative = false;
if (_off) {
- _layout->set_text ("\u2012\u2012\u2012\u2012\u2012\u2012\u2012\u2012\u2012\u2012");
+ _layout->set_text (" ----------");
if (_left_layout) {
_left_layout->set_text ("");
@@ -1106,7 +1106,7 @@ AudioClock::set_minsec (framepos_t when, bool /*force*/)
bool negative = false;
if (_off) {
- _layout->set_text ("\u2012\u2012:\u2012\u2012:\u2012\u2012.\u2012\u2012\u2012");
+ _layout->set_text (" --:--:--.---");
if (_left_layout) {
_left_layout->set_text ("");
@@ -1147,7 +1147,7 @@ AudioClock::set_timecode (framepos_t when, bool /*force*/)
bool negative = false;
if (_off) {
- _layout->set_text ("\u2012\u2012:\u2012\u2012:\u2012\u2012:\u2012\u2012");
+ _layout->set_text (" --:--:--:--");
if (_left_layout) {
_left_layout->set_text ("");
_right_layout->set_text ("");
@@ -1182,7 +1182,7 @@ AudioClock::set_bbt (framepos_t when, bool /*force*/)
bool negative = false;
if (_off) {
- _layout->set_text ("\u2012\u2012\u2012|\u2012\u2012|\u2012\u2012\u2012\u2012");
+ _layout->set_text (" ---|--|----");
if (_left_layout) {
_left_layout->set_text ("");
_right_layout->set_text ("");