diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-09-22 10:44:53 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-09-22 10:44:53 +0200 |
commit | 6b2f38413ee05126c08e1dcec403586fd669662a (patch) | |
tree | a195c08e9b8f88491269f3c90adcdb1b15abd4aa /lib | |
parent | 2227832ee981b1376327f724b6477f786595a36e (diff) | |
download | synthpod-6b2f38413ee05126c08e1dcec403586fd669662a.tar.xz |
exit synthpod if audio engine did not start.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/synthpod_ui.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/synthpod_ui.c b/lib/synthpod_ui.c index 92dfd3ad..e7b7faea 100644 --- a/lib/synthpod_ui.c +++ b/lib/synthpod_ui.c @@ -4724,14 +4724,12 @@ sp_ui_new(Evas_Object *win, const LilvWorld *world, sp_ui_driver_t *driver, if(ui->statusline) { //TODO use - elm_object_text_set(ui->statusline, "[status]"); + elm_object_text_set(ui->statusline, ""); evas_object_size_hint_weight_set(ui->statusline, EVAS_HINT_EXPAND, 0.f); evas_object_size_hint_align_set(ui->statusline, 0.f, 1.f); evas_object_show(ui->statusline); elm_table_pack(ui->table, ui->statusline, 0, 2, 1, 1); } // statusline - - //TODO add info button } // theme } |