@codebrainz It doesn't. This seems not to break anything: ```diff diff --git a/overview/overview/overviewscintilla.c b/overview/overview/overviewscintilla.c index 41840638..40e46fc8 100644 --- a/overview/overview/overviewscintilla.c +++ b/overview/overview/overviewscintilla.c @@ -691,6 +691,8 @@ overview_scintilla_init (OverviewScintilla *self) memcpy (&self->overlay_color, &def_overlay_color, sizeof (OverviewColor)); memcpy (&self->overlay_outline_color, &def_overlay_outline_color, sizeof (OverviewColor));
+ gtk_widget_set_can_focus (GTK_WIDGET (self), FALSE); + gtk_widget_add_events (GTK_WIDGET (self), GDK_EXPOSURE_MASK | GDK_FOCUS_CHANGE_MASK | ```
FWIW, without this, if you focus the overview you can get funny behavior, like <kbd>Ctrl+A</kbd> that will select everything in the overview :)