Merge lp://staging/~azzar1/unity/fix-1003950 into lp://staging/unity
Proposed by
Andrea Azzarone
Status: | Merged | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Approved by: | Martin Mrazik | ||||||||||||
Approved revision: | no longer in the source branch. | ||||||||||||
Merged at revision: | 3021 | ||||||||||||
Proposed branch: | lp://staging/~azzar1/unity/fix-1003950 | ||||||||||||
Merge into: | lp://staging/unity | ||||||||||||
Diff against target: |
678 lines (+443/-37) 8 files modified
tests/CMakeLists.txt (+3/-1) tests/bamf-mock-window.c (+239/-0) tests/bamf-mock-window.h (+80/-0) tests/mock-application.h (+6/-0) tests/test_bamf_application.cpp (+86/-0) unity-shared/ApplicationManager.h (+3/-0) unity-shared/BamfApplicationManager.cpp (+12/-20) unity-shared/BamfApplicationManager.h (+14/-16) |
||||||||||||
To merge this branch: | bzr merge lp://staging/~azzar1/unity/fix-1003950 | ||||||||||||
Related bugs: |
|
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
PS Jenkins bot (community) | continuous-integration | Needs Fixing | |
Marco Trevisan (Treviño) | Approve | ||
Review via email: mp+140781@code.staging.launchpad.net |
Commit message
Include unmapped windows in unity::
Description of the change
== Problem ==
Launcher does not show minimized update manager while clicked.
== Fix ==
Include unmapped windows in unity::
== Test ==
Unit test added.
To post a comment you must log in.
76 +bamf_mock_ window_ set_transient (BamfMockWindow *self, BamfWindow* transient) MOCK_WINDOW (self)); >transient = g_object_ ref(transient) ;
77 +{
78 + g_return_if_fail (BAMF_IS_
79 + self->priv-
80 +}
Mhmh... Probably it's better not to ref it here, since the parent window can be also closed... Probably it's better to add a weak ref instead.