same netwm tooltip fix

SVN revision: 81876
This commit is contained in:
Mike Blumenkrantz 2012-12-29 15:57:08 +00:00
parent c8e20e4f7b
commit 86727a6b8b
3 changed files with 6 additions and 1 deletions

View File

@ -862,3 +862,7 @@
* Support item separators in D-Bus menu
* Support freedesktop icons in D-Bus menu
* Reduce D-Bus communication (omit default values)
2012-12-29 Mike Blumenkrantz
* Tooltips now correctly set NETWM tooltip window type

View File

@ -106,6 +106,7 @@ Fixes:
* Fix typo from elm_plug signal "image.deleted", should be "image,deleted".
* Fix photocam returns file set error correctly.
* Fix bug where genlist would delete items added during selection callback if a clear was queued
* Tooltips now correctly set NETWM tooltip window type
Removals:

View File

@ -131,7 +131,7 @@ _elm_tooltip_show(Elm_Tooltip *tt)
}
if (tt->free_size)
{
tt->tt_win = elm_win_add(NULL, "tooltip", ELM_WIN_BASIC);
tt->tt_win = elm_win_add(NULL, "tooltip", ELM_WIN_TOOLTIP);
elm_win_override_set(tt->tt_win, EINA_TRUE);
tt->tt_evas = evas_object_evas_get(tt->tt_win);
tt->tooltip = edje_object_add(tt->tt_evas);