theme: change

master
Alastair Poole 2 years ago
parent 0fa5d7c75d
commit ae61e28b1b
  1. BIN
      data/sounds/badjoke.wav
  2. BIN
      data/sounds/cockerel.wav
  3. 14
      data/themes/evisum.edc
  4. 1
      data/themes/meson.build
  5. 2
      src/bin/ui/ui_process_list.c

Binary file not shown.

Binary file not shown.

@ -25,6 +25,14 @@ group { \
}
collections {
sounds
{
sample
{
name: "joke" COMP;
source: "badjoke.wav";
}
}
group
{
name: "cpu";
@ -151,6 +159,12 @@ collections {
transition: SINUSOIDAL 0.8;
target: "evisum/indicator-clip";
}
program
{
signal: "fields,change";
source: "evisum/indicator";
action: PLAY_SAMPLE "joke" 1.0 INPUT;
}
}
}
}

@ -3,6 +3,7 @@ edje_cmd = find_program('edje_cc')
cmd = [ edje_cmd,
'-id', join_paths(meson.source_root(), 'data', 'images'),
'-id', join_paths(meson.source_root(), 'data', 'icons'),
'-sd', join_paths(meson.source_root(), 'data', 'sounds'),
'@INPUT@', '@OUTPUT@'
]

@ -1165,6 +1165,8 @@ _btn_clicked_state_save(Data *pd, Evas_Object *btn)
evas_object_del(pd->fields_menu);
pd->fields_menu = NULL;
// Postpone field changes until the user dismisses the popup.
if (evisum_ui_effects_enabled_get(pd->ui))
elm_object_signal_emit(pd->indicator, "fields,change", "evisum/indicator");
if (pd->fields_changed)
_content_reset(pd);
return;

Loading…
Cancel
Save