equal
deleted
inserted
replaced
47 HbView *const view = menuView.view(); |
47 HbView *const view = menuView.view(); |
48 |
48 |
49 if (!hbW->views().contains(view)) { |
49 if (!hbW->views().contains(view)) { |
50 hbW->addView(view); |
50 hbW->addView(view); |
51 } |
51 } |
52 if (hbW->currentView() && !hbW->currentView()->isContentFullScreen()) { |
52 hbW->setCurrentView(view); |
53 // quick trick to know if we are not comming from IDLE |
|
54 hbW->setCurrentView(view, true, Hb::ViewSwitchUseAltEvent); |
|
55 } else { |
|
56 hbW->setCurrentView(view); |
|
57 } |
|
58 } |
53 } |
59 |
54 |