Dino
b709996ec6
editor: Fix pane's tab buttons flicker on right-click ( #42549 )
...
Whenever right-click was used on the editor, the pane's tab buttons
would flicker, which was confirmed to happen because of the following
check:
```
self.focus_handle.contains_focused(window, cx)
|| self
.active_item()
.is_some_and(|item| {
item.item_focus_handle(cx).contains_focused(window, cx)
})
```
This check was returning `false` right after right-clicking but
returning `true` right after. When digging into it a little bit more,
this appears to be happening because the editor's `MouseContextMenu`
relies on `ContextMenu` which is rendered in a deferred fashion but
`MouseContextMenu` updates the window's focus to it instantaneously.
Since the `ContextMenu` is rendered in a deferred fashion, its focus
handle is not yet a descendant of the editor (pane's active item) focus
handle, so the `contains_focused(window, cx)` call would return `false`,
with it returning `true` after the menu was rendered.
This commit updates the `MouseContextMenu::new` function to leverage
`cx.on_next_frame` and ensure that the focus is only moved to the
`ContextMenu` 2 frames later, ensuring that by the time the focus is
moved, the `ContextMenu`'s focus handle is a descendant of the editor's.
Closes #41771
Release Notes:
- Fixed pane's tab buttons flickering when using right-click on the
editor
2025-11-13 15:57:26 +00:00
..
2025-11-12 15:13:40 +00:00
2025-11-02 18:11:21 +00:00
2025-11-07 22:27:14 +00:00
2025-11-11 01:02:13 -05:00
2025-11-13 15:09:16 +00:00
2025-11-11 15:25:27 +00:00
2025-11-10 11:11:24 -03:00
2025-11-13 10:10:02 -05:00
2025-10-20 08:35:28 -03:00
2025-10-17 18:58:14 +00:00
2025-11-13 14:37:47 +01:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-07 22:27:14 +00:00
2025-11-07 22:27:14 +00:00
2025-11-07 22:27:14 +00:00
2025-11-11 16:15:12 +00:00
2025-11-11 12:55:19 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-10-29 16:41:43 +01:00
2025-11-03 14:50:34 -03:00
2025-11-03 19:25:15 +00:00
2025-11-12 20:27:04 +00:00
2025-11-07 22:27:14 +00:00
2025-10-28 20:21:49 +00:00
2025-11-11 12:47:08 -03:00
2025-11-06 09:16:45 +00:00
2025-11-10 23:00:55 -07:00
2025-10-17 18:58:14 +00:00
2025-11-12 16:41:04 -08:00
2025-11-12 18:16:13 +00:00
2025-11-06 18:36:58 -05:00
2025-11-12 15:38:16 +00:00
2025-11-07 22:27:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-07 22:27:14 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-07 22:27:14 +00:00
2025-11-05 22:34:05 +00:00
2025-10-17 18:58:14 +00:00
2025-11-07 22:27:14 +00:00
2025-11-06 12:53:59 -05:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-10-31 01:53:46 +00:00
2025-11-11 16:34:25 -05:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-12 10:32:46 -08:00
2025-10-23 14:13:35 -04:00
2025-11-12 16:41:04 -08:00
2025-11-11 21:31:42 +00:00
2025-11-07 22:27:14 +00:00
2025-11-13 15:57:26 +00:00
2025-11-11 16:07:57 +00:00
2025-10-17 18:58:14 +00:00
2025-11-11 15:45:03 +02:00
2025-09-11 13:56:06 -07:00
2025-10-31 21:18:22 +00:00
2025-11-11 15:45:03 +02:00
2025-11-12 10:12:02 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-11 15:42:00 +02:00
2025-10-17 18:58:14 +00:00
2025-11-12 16:26:53 +00:00
2025-10-20 10:30:06 +00:00
2025-10-17 18:58:14 +00:00
2025-10-20 23:54:56 +03:00
2025-11-10 09:27:51 +00:00
2025-11-09 21:37:22 -05:00
2025-11-12 15:13:29 +01:00
2025-11-07 22:27:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-12 20:27:04 +00:00
2025-10-17 18:58:14 +00:00
2025-10-26 13:24:26 +00:00
2025-10-17 18:58:14 +00:00
2025-11-10 23:00:55 -07:00
2025-10-17 18:58:14 +00:00
2025-11-11 12:50:56 -03:00
2025-11-07 22:27:14 +00:00
2025-11-11 16:34:25 -05:00
2025-10-17 18:58:14 +00:00
2025-11-11 20:51:57 +02:00
2025-11-11 15:43:25 +02:00
2025-11-11 16:34:25 -05:00
2025-11-12 01:36:22 +00:00
2025-11-03 19:25:15 +00:00
2025-11-13 14:15:46 +00:00
2025-11-13 14:15:46 +00:00
2025-10-17 18:58:14 +00:00
2025-10-22 19:52:38 +00:00
2025-11-11 19:20:38 +02:00
2025-11-12 19:59:10 +00:00
2025-10-22 19:52:38 +00:00
2025-10-17 18:58:14 +00:00
2025-11-07 09:42:55 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-08 14:00:53 +01:00
2025-11-13 15:12:17 +01:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-12 03:23:40 +05:30
2025-11-12 15:31:20 +01:00
2025-10-17 18:58:14 +00:00
2025-11-13 09:13:54 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-12 22:03:59 -06:00
2025-10-20 17:20:09 +00:00
2025-11-11 16:10:47 +01:00
2025-11-10 14:26:01 -07:00
2025-11-13 14:15:46 +00:00
2025-10-17 18:58:14 +00:00
2025-11-07 22:27:14 +00:00
2025-11-11 16:59:44 +05:30
2025-10-17 18:58:14 +00:00
2025-11-12 15:31:20 +01:00
2025-11-12 16:37:14 +01:00
2025-10-17 18:58:14 +00:00
2025-11-13 09:14:18 -05:00
2025-11-13 14:56:40 +01:00
2025-11-12 03:23:40 +05:30
2025-11-07 22:27:14 +00:00
2025-10-29 16:27:30 +00:00
2025-11-10 07:57:50 +00:00
2025-11-10 23:00:55 -07:00
2025-10-17 18:58:14 +00:00
2025-11-10 23:00:55 -07:00
2025-11-13 14:37:47 +01:00
2025-11-13 14:56:40 +01:00
2025-11-12 15:31:20 +01:00
2025-10-17 18:58:14 +00:00
2025-11-03 19:25:15 +00:00
2025-11-13 08:11:18 +00:00
2025-10-24 07:52:51 -04:00
2025-11-03 19:25:15 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-11 10:26:40 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-12 20:27:04 +00:00
2025-10-27 10:13:26 -04:00
2025-11-07 22:27:14 +00:00
2025-11-07 22:27:14 +00:00
2025-11-12 16:38:06 +01:00
2025-10-17 18:58:14 +00:00
2025-11-11 16:34:25 -05:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-07 22:27:14 +00:00
2025-11-03 19:25:15 +00:00
2025-11-09 10:55:56 +00:00
2025-11-06 18:36:58 -05:00
2025-10-17 18:58:14 +00:00
2025-10-29 18:49:39 +01:00
2025-10-17 18:58:14 +00:00
2025-11-07 22:27:14 +00:00
2025-10-24 18:19:53 +02:00
2025-11-07 22:27:14 +00:00
2025-11-07 11:36:05 +00:00
2025-10-17 18:58:14 +00:00
2025-11-12 16:38:06 +01:00
2025-11-12 16:38:06 +01:00
2025-11-12 20:27:04 +00:00
2025-11-10 14:26:01 -07:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-10 15:09:37 +01:00
2025-10-22 19:52:38 +00:00
2025-11-07 09:42:55 +00:00
2025-11-04 14:12:05 -05:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-13 08:11:18 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-13 06:46:14 +00:00
2025-11-07 22:27:14 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-12 21:08:41 +00:00
2025-11-13 09:14:18 -05:00
2025-11-07 22:27:14 +00:00
2025-10-17 18:58:14 +00:00
2025-11-13 10:46:51 -05:00
2025-11-12 15:31:20 +01:00
2025-10-17 18:58:14 +00:00
2025-11-12 16:41:04 -08:00
2025-11-12 16:58:22 -05:00
2025-11-08 01:06:12 +00:00
2025-11-13 15:43:22 +00:00
2025-11-10 19:50:43 +00:00
2025-11-07 22:27:14 +00:00