[gnome-shell] Consume windows by the Activities button on minimize
- From: Adel Gadllah <agadllah src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gnome-shell] Consume windows by the Activities button on minimize
- Date: Fri, 5 Feb 2010 16:01:27 +0000 (UTC)
commit 6f83b39ee4136beba83cd4320b1ad225a2f27e86
Author: Adel Gadllah <adel gadllah gmail com>
Date: Fri Feb 5 13:50:11 2010 +0100
Consume windows by the Activities button on minimize
The design document states:
"Animate the action as shrinking into or being consumed by the Activities Item"
This makes it clear what happens to the window (i.e it doesn't vanish but can be brought back by going to the overview).
https://bugzilla.gnome.org/show_bug.cgi?id=609079
js/ui/windowManager.js | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
---
diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js
index 46e5964..136cd09 100644
--- a/js/ui/windowManager.js
+++ b/js/ui/windowManager.js
@@ -74,9 +74,14 @@ WindowManager.prototype = {
* maybe TODO: get icon geometry passed through and move the window towards it?
*/
this._minimizing.push(actor);
+
+ let primary = global.get_primary_monitor();
+
Tweener.addTween(actor,
{ scale_x: 0.0,
scale_y: 0.0,
+ x: primary.x,
+ y: 0,
time: WINDOW_ANIMATION_TIME,
transition: "easeOutQuad",
onComplete: this._minimizeWindowDone,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]