netstar pushed a commit to branch master. http://git.enlightenment.org/apps/evisum.git/commit/?id=0873f7fa0d649046d617c0eeb68811232d61d109
commit 0873f7fa0d649046d617c0eeb68811232d61d109 Author: Alastair Poole <nets...@gmail.com> Date: Sat Oct 10 12:18:51 2020 +0100 ui: cosmetics --- src/bin/ui/ui_cpu.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bin/ui/ui_cpu.c b/src/bin/ui/ui_cpu.c index c584c3e..12cae41 100644 --- a/src/bin/ui/ui_cpu.c +++ b/src/bin/ui/ui_cpu.c @@ -448,7 +448,7 @@ _graph(Ui *ui, Evas_Object *parent) evas_object_show(colors); lb = elm_label_add(parent); - elm_object_text_set(lb, "<b><color=#fff>0%</></>"); + elm_object_text_set(lb, "<b><color=#fff> 0%</></>"); evas_object_size_hint_align_set(lb, 0.0, 0.5); evas_object_size_hint_weight_set(lb, EXPAND, EXPAND); elm_table_pack(tbl, lb, 0, 0, 1, 1); @@ -457,9 +457,9 @@ _graph(Ui *ui, Evas_Object *parent) lb = elm_label_add(parent); f = (ad->freq_min + 500) / 1000; if (f < 1000) - snprintf(buf, sizeof(buf), "<b><color=#fff>%iMHz</></>", f); + snprintf(buf, sizeof(buf), "<b><color=#fff> %iMHz</></>", f); else - snprintf(buf, sizeof(buf), "<b><color=#fff>%1.1fGHz</></>", ((double)f + 0.05) / 1000.0); + snprintf(buf, sizeof(buf), "<b><color=#fff> %1.1fGHz</></>", ((double)f + 0.05) / 1000.0); elm_object_text_set(lb, buf); evas_object_size_hint_align_set(lb, 0.0, 0.5); evas_object_size_hint_weight_set(lb, EXPAND, EXPAND); @@ -486,7 +486,7 @@ _graph(Ui *ui, Evas_Object *parent) evas_object_show(lb); lb = elm_label_add(parent); - snprintf(buf, sizeof(buf), "<b><color=#fff>%i°C</></>", ad->temp_min); + snprintf(buf, sizeof(buf), "<b><color=#fff> %i°C</></>", ad->temp_min); elm_object_text_set(lb, buf); evas_object_size_hint_align_set(lb, 0.0, 0.5); evas_object_size_hint_weight_set(lb, EXPAND, EXPAND); --