View Single Post
Posts: 578 | Thanked: 994 times | Joined on Dec 2012
#1681
Transition from task menu to launcher looks:
_MB_CURRENT_APP_WINDOW: window id # 0xffffffff (task menu)
_MB_CURRENT_APP_WINDOW: window id # 0x0 (launcher)
but from task menu to home:
_MB_CURRENT_APP_WINDOW: window id # 0xffffffff (task menu)
_MB_CURRENT_APP_WINDOW: window id # 0x0
_MB_CURRENT_APP_WINDOW: window id # 0x1c00005 (home)
It's irrelevant for common user but it confusing my application. Could someone fix this bug or it's intentional and 0x0 doesn't indicate launcher?
I changed
Code:
 else if (STATE_IS_TASK_NAV(oldstate ) && !STATE_IS_APP (state))
to
Code:
else if (STATE_IS_TASK_NAV(oldstate) && !STATE_IS_APP(state)  && state!=HDRM_STATE_HOME && state!=HDRM_STATE_HOME_PORTRAIT)
in hd-render-manager.c at 1802 line and now it looks good - task menu to home:
_MB_CURRENT_APP_WINDOW: window id # 0xffffffff (task menu)
_MB_CURRENT_APP_WINDOW: window id # 0x1c00005 (home)

hildon-desktop_2.2.155-2+thumb0.tar.gz

Edit: update portrait support
Attached Files
File Type: deb hildon-desktop_2.2.155-2+thumb0_armel.deb (216.0 KB, 75 views)

Last edited by elros34; 2014-09-10 at 16:45.
 

The Following 5 Users Say Thank You to elros34 For This Useful Post: