[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2015-05-18 Thread Christopher Townsend
** Changed in: unity Status: In Progress = Fix Committed ** Also affects: unity/7.2 Importance: Undecided Status: New ** Changed in: unity/7.2 Status: New = Triaged ** Changed in: unity/7.2 Importance: Undecided = Low ** Changed in: unity/7.2 Assignee:

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2015-05-18 Thread Launchpad Bug Tracker
This bug was fixed in the package unity - 7.3.2+15.10.20150512-0ubuntu1 --- unity (7.3.2+15.10.20150512-0ubuntu1) wily; urgency=medium [ Chris Townsend ] * Add new signal to tell the Launcher to terminate keynav mode and use that signal when a BFB quicklist item is chosen.

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2015-04-09 Thread Launchpad Bug Tracker
** Branch linked: lp:~townsend/unity/fix-always-on-top-spread -- You received this bug notification because you are a member of DX Packages, which is subscribed to unity in Ubuntu. Matching subscriptions: dx-packages https://bugs.launchpad.net/bugs/1131385 Title: Always on top prevents

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2015-04-09 Thread Christopher Townsend
** Changed in: unity Assignee: Taihsiang Ho (taihsiangho) = Christopher Townsend (townsend) ** Changed in: unity (Ubuntu) Assignee: Taihsiang Ho (taihsiangho) = Christopher Townsend (townsend) ** Changed in: unity (Ubuntu) Importance: Undecided = Low ** Tags removed: needs-design

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2015-03-19 Thread Stephen M. Webb
** Changed in: unity Milestone: 7.3.2 = 7.3.3 -- You received this bug notification because you are a member of DX Packages, which is subscribed to unity in Ubuntu. Matching subscriptions: dx-packages https://bugs.launchpad.net/bugs/1131385 Title: Always on top prevents application spread

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2015-02-11 Thread Stephen M. Webb
** Changed in: unity Milestone: 7.3.1 = 7.3.2 -- You received this bug notification because you are a member of DX Packages, which is subscribed to unity in Ubuntu. Matching subscriptions: dx-packages https://bugs.launchpad.net/bugs/1131385 Title: Always on top prevents application spread

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2014-07-23 Thread TreviƱo
** Changed in: unity Milestone: 7.0.1 = 7.3.1 -- You received this bug notification because you are a member of DX Packages, which is subscribed to unity in Ubuntu. Matching subscriptions: dx-packages https://bugs.launchpad.net/bugs/1131385 Title: Always on top prevents application spread

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2014-05-30 Thread Taihsiang Ho
in unity-shared/PluginAdapter.cpp 621 if (window-defaultViewport() == screen_vp 622 window-isViewable() window-isMapped() 623 !window-minimized() !window-inShowDesktopMode() 624 !(window-state() CompWindowStateAboveMask) 625 !(window-type()

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2014-05-30 Thread Taihsiang Ho
the two numbers I mentioned in comment #13, I meant: window-state() = (unsigned int ) @0x186e480: 8192 window-state() = (unsigned int ) @0x186e480: 8704 -- You received this bug notification because you are a member of DX Packages, which is subscribed to unity in Ubuntu. Matching subscriptions:

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2014-05-30 Thread Taihsiang Ho
compiz-0.9.10+13.10.20131011/include/core/window.h: #define CompWindowStateAboveMask(1 9) 8192 ( 1 9 ) is 0, namely !(window-state() CompWindowStateAboveMask) is true 8704 ( 1 9 ) is 512, namely !(window-state() CompWindowStateAboveMask) is false -- You received this bug

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2014-05-30 Thread Taihsiang Ho
I think the comment #15 giving the root cause raising this bug. -- You received this bug notification because you are a member of DX Packages, which is subscribed to unity in Ubuntu. Matching subscriptions: dx-packages https://bugs.launchpad.net/bugs/1131385 Title: Always on top prevents

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2014-04-24 Thread Taihsiang Ho
Focus method mentioned in comment #8 should be in line 418 namely the two variables active and scaleWasActive are false. A window which set as Always on Top make wm.IsWindowOnTop(xid) return false, and this make any_on_top keep false. Finally active will be set as false. More information: if

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2014-04-24 Thread Taihsiang Ho
why does wm.IsWindowOnTop(xid) return false when the window is set as Always on Top this is because GetTopMostValidWindowInViewport() does not return the xid which is equal to the Always on Top window. please see unity-shared/PluginAdapter.cpp:604 unity::PluginAdapter::IsWindowOnTop

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2014-04-24 Thread Taihsiang Ho
looks like the name of the top window is Desktop in comment 10 instead of the name of the real always on top window. (gdb) print GetWindowName(GetTopMostValidWindowInViewport()) $11 = {static npos = optimized out, _M_dataplus = {std::allocatorchar = {__gnu_cxx::new_allocatorchar = {No data

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2014-04-20 Thread Taihsiang Ho
gdb shows the if statement in launcher/ApplicationLauncherIcon.cpp goes to 398 Focus(arg); instead of 404 Spread(true, 0, false); the Spread method in line 404 is what we expect to issue when clicking the launcher icon. When we set one of the window as Always on Top, the

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2014-04-18 Thread Taihsiang Ho
reproducible on 14.04 unity version: 7.2.0 1. launch two calculator applications, say A and B 2. set A as Always on top, and make B minimized 3. try to use application spread, then you will reproduce this bug 4. minimized A 5. use application spread again. only A pop up. -- You received this

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2014-04-15 Thread Taihsiang Ho
reproducible on 13.10 ** Changed in: unity Assignee: (unassigned) = Taihsiang Ho (taihsiangho) ** Changed in: unity (Ubuntu) Assignee: (unassigned) = Taihsiang Ho (taihsiangho) ** Changed in: unity (Ubuntu) Status: Confirmed = In Progress -- You received this bug notification

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2014-04-15 Thread Taihsiang Ho
not reproducible on 12.04 unity 5.20.0 -- You received this bug notification because you are a member of DX Packages, which is subscribed to unity in Ubuntu. Matching subscriptions: dx-packages https://bugs.launchpad.net/bugs/1131385 Title: Always on top prevents application spread from

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2013-12-16 Thread Ryan Nathaniel Smith
** Changed in: unity Assignee: Ryan Nathaniel Smith (ryan-smith) = (unassigned) -- You received this bug notification because you are a member of DX Packages, which is subscribed to unity in Ubuntu. Matching subscriptions: dx-packages https://bugs.launchpad.net/bugs/1131385 Title: Always

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2013-11-29 Thread Ryan Nathaniel Smith
** Changed in: unity Assignee: (unassigned) = Ryan Nathaniel Smith (ryan-smith) -- You received this bug notification because you are a member of DX Packages, which is subscribed to unity in Ubuntu. Matching subscriptions: dx-packages https://bugs.launchpad.net/bugs/1131385 Title: Always

[Dx-packages] [Bug 1131385] Re: Always on top prevents application spread from working

2013-11-29 Thread Ryan Nathaniel Smith
** Changed in: unity Status: Triaged = In Progress -- You received this bug notification because you are a member of DX Packages, which is subscribed to unity in Ubuntu. Matching subscriptions: dx-packages https://bugs.launchpad.net/bugs/1131385 Title: Always on top prevents