gnome-shell/js/ui
Florian Müllner 749f52fc8b popupMenu: Split submenu expansion and arrow rotation
When expanding a submenu, we currently use a single tween to animate
both the submenu actor and the source arrow. We do this by tweening
a monkey-patched JS property on the main actor, which we then use
to update the arrow's GObject property on updates. As Clutter cannot
animate random JS properties, this trick will prevent us from using
implicit animations here.

The only reason I can think of for using a single tween is to keep
both animations in perfect lock step, but as expansion and rotation
are visually quite distinct, this shouldn't be required, so just
set up separate animations for each actor.

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/22
2019-08-06 20:50:43 +02:00
..
components cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
status osdWindow: Use float values as input for osdWindow 2019-07-28 17:27:53 +02:00
accessDialog.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
altTab.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
animation.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
appDisplay.js appDisplay: Skip animation when hidden 2019-08-06 14:52:41 +02:00
appFavorites.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
audioDeviceSelection.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
background.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
backgroundMenu.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
barLevel.js barLevel: Don't reset value on overview-start changes 2019-08-06 14:52:41 +02:00
boxpointer.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
calendar.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
checkBox.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
closeDialog.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
ctrlAltTab.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
dash.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
dateMenu.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
dialog.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
dnd.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
edgeDragAction.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
endSessionDialog.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
environment.js st: Move slow-down-factor into settings 2019-08-01 21:13:28 +00:00
extensionDownloader.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
extensionSystem.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
focusCaretTracker.js cleanup: Prefer template strings 2019-07-05 11:32:31 +00:00
grabHelper.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
ibusCandidatePopup.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
iconGrid.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
inhibitShortcutsDialog.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
kbdA11yDialog.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
keyboard.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
layout.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
lightbox.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
locatePointer.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
lookingGlass.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
magnifier.js cleanup: Mark unused (but useful) variables as ignored 2019-07-24 00:28:45 +02:00
magnifierDBus.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
main.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
messageList.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
messageTray.js messageTray: Drop tween helper function 2019-08-06 14:52:41 +02:00
modalDialog.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
mpris.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
notificationDaemon.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
osdMonitorLabeler.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
osdWindow.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
overview.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
overviewControls.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
padOsd.js style: Disable camelcase rule for GObject properties 2019-07-24 00:28:45 +02:00
pageIndicators.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
panel.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
panelMenu.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
pointerA11yTimeout.js pointerA11yTimeout: Use notify handler instead of onUpdate callback 2019-08-06 14:52:41 +02:00
pointerWatcher.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
popupMenu.js popupMenu: Split submenu expansion and arrow rotation 2019-08-06 20:50:43 +02:00
remoteSearch.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
ripples.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
runDialog.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
screencast.js cleanup: Use destructuring for imports from GI 2019-02-09 07:39:20 +01:00
screenShield.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
screenshot.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
scripting.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
search.js cleanup: Mark unused (but useful) variables as ignored 2019-07-24 00:28:45 +02:00
sessionMode.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
shellDBus.js shellDBus: Use floats instead of percentages for OSD levels 2019-07-28 17:27:53 +02:00
shellEntry.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
shellMountOperation.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
slider.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
switcherPopup.js switcherPopup: Avoid unnecessary animation 2019-08-06 14:52:41 +02:00
switchMonitor.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
tweener.js st: Move slow-down-factor into settings 2019-08-01 21:13:28 +00:00
unlockDialog.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
userWidget.js userWidget: Handle non-square icons gracefully 2019-07-29 16:16:22 +00:00
viewSelector.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
windowAttentionHandler.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
windowManager.js windowManager: Small cleanup 2019-08-06 14:52:41 +02:00
windowMenu.js cleanup: Mark globals used from other modules as exported 2019-07-24 00:28:45 +02:00
workspace.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
workspacesView.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
workspaceSwitcherPopup.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
workspaceThumbnail.js cleanup: Use milliseconds for animation times 2019-08-05 21:55:20 +00:00
xdndHandler.js cleanup: Mark unused (but useful) variables as ignored 2019-07-24 00:28:45 +02:00