fix typo in 58fec98a
the documentation was correct: “GTK+ uses G_PRIORITY_HIGH_IDLE + 10 for resizing operations, and G_PRIORITY_HIGH_IDLE + 20 for redrawing operations.” but the priority for the idle visual changer was wrong. fixes, follow-playhead and zoom/scrolling under load (no idle)
This commit is contained in:
parent
1d0612ceb6
commit
da4365255c
@ -4386,7 +4386,7 @@ Editor::ensure_visual_change_idle_handler ()
|
|||||||
{
|
{
|
||||||
if (pending_visual_change.idle_handler_id < 0) {
|
if (pending_visual_change.idle_handler_id < 0) {
|
||||||
// see comment in add_to_idle_resize above.
|
// see comment in add_to_idle_resize above.
|
||||||
pending_visual_change.idle_handler_id = g_idle_add_full (G_PRIORITY_DEFAULT_IDLE + 20, _idle_visual_changer, this, NULL);
|
pending_visual_change.idle_handler_id = g_idle_add_full (G_PRIORITY_HIGH_IDLE + 10, _idle_visual_changer, this, NULL);
|
||||||
pending_visual_change.being_handled = false;
|
pending_visual_change.being_handled = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user