[maemo-commits] [maemo-commits] r19337 - in projects/haf/trunk/libmatchbox2: . debian matchbox/core
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Fri Sep 11 13:34:41 EEST 2009
- Previous message: [maemo-commits] r19336 - projects/haf/tags/osso-gnome-vfs2
- Next message: [maemo-commits] r19338 - projects/haf/tags/libmatchbox2
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: kihamala Date: 2009-09-11 13:34:34 +0300 (Fri, 11 Sep 2009) New Revision: 19337 Modified: projects/haf/trunk/libmatchbox2/ChangeLog projects/haf/trunk/libmatchbox2/debian/changelog projects/haf/trunk/libmatchbox2/matchbox/core/mb-wm-client.c Log: Apply a patch from Laszlo Pere for NB#118818 - Focus goes away from the text entry in the "new tag"/"new geotag" dialogs after backgrounding * matchbox/core/mb-wm-client.c (mb_wm_client_get_last_focused_transient): Call mb_wm_client_get_last_focused_transient recursively to find the topmost transient that should be focused. Modified: projects/haf/trunk/libmatchbox2/ChangeLog =================================================================== --- projects/haf/trunk/libmatchbox2/ChangeLog 2009-09-11 07:55:26 UTC (rev 19336) +++ projects/haf/trunk/libmatchbox2/ChangeLog 2009-09-11 10:34:34 UTC (rev 19337) @@ -1,3 +1,16 @@ +2009-09-11 Kimmo Hämäläinen <kimmo.hamalainen at nokia.com> + + Release 0.2.67 + + Apply a patch from Laszlo Pere for NB#118818 - Focus goes away from + the text entry in the "new tag"/"new geotag" dialogs after + backgrounding + + * matchbox/core/mb-wm-client.c + (mb_wm_client_get_last_focused_transient): Call + mb_wm_client_get_last_focused_transient recursively to find the + topmost transient that should be focused. + 2009-09-10 Kimmo Hämäläinen <kimmo.hamalainen at nokia.com> Release 0.2.66 Modified: projects/haf/trunk/libmatchbox2/debian/changelog =================================================================== --- projects/haf/trunk/libmatchbox2/debian/changelog 2009-09-11 07:55:26 UTC (rev 19336) +++ projects/haf/trunk/libmatchbox2/debian/changelog 2009-09-11 10:34:34 UTC (rev 19337) @@ -1,8 +1,12 @@ -matchbox-window-manager-2 (0.2.67-1~unreleased) unstable; urgency=low +matchbox-window-manager-2 (0.2.67-1) unstable; urgency=low - * foo + Laszlo: + * Fixes: NB#118818 - Focus goes away from the text entry in the "new + tag"/"new geotag" dialogs after backgrounding + * Fixes: NB#133434 - Unable to enter username and password while creating + the accounts from control panel - -- Kimmo Hämäläinen <kimmo.hamalainen at nokia.com> Thu, 10 Sep 2009 17:32:05 +0300 + -- Kimmo Hämäläinen <kimmo.hamalainen at nokia.com> Fri, 11 Sep 2009 13:31:38 +0300 matchbox-window-manager-2 (0.2.66-1) unstable; urgency=low Modified: projects/haf/trunk/libmatchbox2/matchbox/core/mb-wm-client.c =================================================================== --- projects/haf/trunk/libmatchbox2/matchbox/core/mb-wm-client.c 2009-09-11 07:55:26 UTC (rev 19336) +++ projects/haf/trunk/libmatchbox2/matchbox/core/mb-wm-client.c 2009-09-11 10:34:34 UTC (rev 19337) @@ -664,6 +664,15 @@ break; } + if (result) + { + MBWindowManagerClient *rec_transient; + + rec_transient = mb_wm_client_get_last_focused_transient (result); + if (rec_transient) + result = rec_transient; + } + return result; }
- Previous message: [maemo-commits] r19336 - projects/haf/tags/osso-gnome-vfs2
- Next message: [maemo-commits] r19338 - projects/haf/tags/libmatchbox2
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]