diff options
Diffstat (limited to 'gtk/gtkicontheme.c')
-rw-r--r-- | gtk/gtkicontheme.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index aec4b78b4a..398f5558de 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -1847,7 +1847,7 @@ ensure_valid_themes (GtkIconTheme *self, load_themes (self); if (gdk_profiler_is_running ()) - gdk_profiler_add_mark (before * 1000, (g_get_monotonic_time () - before) * 1000, "icon theme load", self->current_theme); + gdk_profiler_add_mark (before, (g_get_monotonic_time () - before), "icon theme load", self->current_theme); if (was_valid) queue_theme_changed (self); @@ -3606,7 +3606,8 @@ icon_ensure_texture__locked (GtkIconPaintable *icon, g_assert (icon->texture != NULL); if (gdk_profiler_is_running ()) - gdk_profiler_add_markf (before * 1000, (g_get_monotonic_time () - before) * 1000, in_thread ? "icon load (thread)" : "icon load" , "%s size %d@%d", icon->filename, icon->desired_size, icon->desired_scale); + gdk_profiler_add_markf (before, g_get_monotonic_time () - before, in_thread ? "icon load (thread)" : "icon load" , + "%s size %d@%d", icon->filename, icon->desired_size, icon->desired_scale); } static GdkTexture * |