mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 23:10:22 +00:00
textview: Only clear the layout in style_update if the font actually changes
This commit is contained in:
parent
6dfee46cdb
commit
fd964ca178
@ -51,6 +51,7 @@
|
||||
#include "gtkscrollable.h"
|
||||
#include "gtktypebuiltins.h"
|
||||
#include "gtktexthandleprivate.h"
|
||||
#include "gtkstylecontextprivate.h"
|
||||
|
||||
#include "a11y/gtktextviewaccessible.h"
|
||||
|
||||
@ -4230,6 +4231,8 @@ gtk_text_view_style_updated (GtkWidget *widget)
|
||||
GtkTextView *text_view;
|
||||
GtkTextViewPrivate *priv;
|
||||
PangoContext *ltr_context, *rtl_context;
|
||||
GtkStyleContext *style_context;
|
||||
const GtkBitmask *changes;
|
||||
|
||||
text_view = GTK_TEXT_VIEW (widget);
|
||||
priv = text_view->priv;
|
||||
@ -4241,7 +4244,11 @@ gtk_text_view_style_updated (GtkWidget *widget)
|
||||
gtk_text_view_set_background (text_view);
|
||||
}
|
||||
|
||||
if (priv->layout && priv->layout->default_style)
|
||||
|
||||
style_context = gtk_widget_get_style_context (widget);
|
||||
changes = _gtk_style_context_get_changes (style_context);
|
||||
if ((changes == NULL || _gtk_css_style_property_changes_affect_font (changes)) &&
|
||||
priv->layout && priv->layout->default_style)
|
||||
{
|
||||
gtk_text_view_set_attributes_from_style (text_view,
|
||||
priv->layout->default_style);
|
||||
|
Loading…
Reference in New Issue
Block a user