fix gl engine opt + pulse.

SVN revision: 84249
This commit is contained in:
Carsten Haitzler 2013-02-20 03:08:33 +00:00
parent b0ba47bd1f
commit aec477530d
4 changed files with 9 additions and 2 deletions

View File

@ -1047,3 +1047,7 @@
* Fix restacking issue on ctxpopup - resatck callback makes the bg object be top of ctxpopup.
2013-02-20 Carsten Haitzler (The Rasterman)
* Fix gl engine vsync option pass-in in elm_win
* Fix elm_progressbar_pulse() to abort if pulsing not enabled

View File

@ -155,7 +155,9 @@ Fixes:
* ignore tab key widget focus change if control/alt is pressed
* prevent blank entry hoversels
* Fix restacking issue on ctxpopup - resatck callback makes the bg object be top of ctxpopup.
* Fix vsync option in gl engine windows
* Fix elm_progressbar_pulse() to abort if pulsing not enabled
Removals:
* All internal widget hooks (and related macros) were removed, due

View File

@ -372,7 +372,7 @@ _pulse(Eo *obj, void *_pd, va_list *list)
Elm_Progressbar_Smart_Data *sd = _pd;
state = !!state;
if ((!sd->pulse) && (sd->pulse_state == state)) return;
if ((!sd->pulse) || (sd->pulse_state == state)) return;
sd->pulse_state = state;

View File

@ -2657,6 +2657,7 @@ _win_constructor(Eo *obj, void *_pd, va_list *list)
opt_i++;
opt[opt_i] = 1;
opt_i++;
opt[opt_i] = 0;
}
if (opt_i > 0)
tmp_sd.ee = ecore_evas_gl_x11_options_new