elementary: fix forgotten break.

SVN revision: 80319
This commit is contained in:
Cedric BAIL 2012-12-06 08:59:14 +00:00
parent 184b398750
commit bb6589c3f1
3 changed files with 5 additions and 0 deletions

View File

@ -772,3 +772,5 @@
* Fix possible segv in elm_quicklaunch infrastructure.
* Fix elm_conform buffer to always finish with at least one '\0';
* Fix forgotten break in elm_map that would have thrown error when the
action was properly taken in fact.

View File

@ -78,6 +78,8 @@ Fixes:
els_scroller.
* Fix possible segv in elm_quicklaunch infrastructure.
* Fix buffer to always have a final '\0' in elm_conform.
* Fix forgotten break in elm_map that would have thrown error when the action was properly
taken in fact.
Removals:

View File

@ -2535,6 +2535,7 @@ _overlay_show(Elm_Map_Overlay *overlay)
case ELM_MAP_OVERLAY_TYPE_SCALE:
if (overlay->visible) _overlay_scale_show(overlay->ovl);
else _overlay_scale_hide(overlay->ovl);
break;
default:
ERR("Invalid overlay type to show: %d", overlay->type);
}