aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/panel-plugins/clock/LClock.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-05-13 09:08:55 -0400
committerKen Moore <ken@pcbsd.org>2015-05-13 09:08:55 -0400
commit021a1d1f2a9f5fe20f2a7b0efc034f2300a775e1 (patch)
tree7bfd1f0e80f6d51f1f7365d63bb5e4c11fe6d3fb /lumina-desktop/panel-plugins/clock/LClock.cpp
parentFix a couple possible parsing issues with loading system/lumina defaults (rem... (diff)
downloadlumina-021a1d1f2a9f5fe20f2a7b0efc034f2300a775e1.tar.gz
lumina-021a1d1f2a9f5fe20f2a7b0efc034f2300a775e1.tar.bz2
lumina-021a1d1f2a9f5fe20f2a7b0efc034f2300a775e1.zip
When using the time/date or date/time clock formats, put a newline instead of a space between the time/date.
Diffstat (limited to 'lumina-desktop/panel-plugins/clock/LClock.cpp')
-rw-r--r--lumina-desktop/panel-plugins/clock/LClock.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/panel-plugins/clock/LClock.cpp b/lumina-desktop/panel-plugins/clock/LClock.cpp
index 1e407083..68662dec 100644
--- a/lumina-desktop/panel-plugins/clock/LClock.cpp
+++ b/lumina-desktop/panel-plugins/clock/LClock.cpp
@@ -48,10 +48,10 @@ void LClock::updateTime(){
label = datelabel;
labelWidget->setToolTip(timelabel);
}else if(datetimeorder == "timedate"){
- label = timelabel + " " + datelabel;
+ label = timelabel + "\n" + datelabel;
labelWidget->setToolTip("");
}else if(datetimeorder == "datetime"){
- label = datelabel + " " + timelabel;
+ label = datelabel + "\n" + timelabel;
labelWidget->setToolTip("");
}else{
label = timelabel;
bgstack15