From 42c1780aef4e7f2e14e2c62b7fcc00d33b37caab Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 26 Oct 2014 21:32:20 +0100 Subject: [PATCH] CS Signed-off-by: Sebastian Ramacher --- page-widget.c | 12 ++++++++---- shortcuts.c | 3 ++- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/page-widget.c b/page-widget.c index 60afbeb..4ed23c2 100644 --- a/page-widget.c +++ b/page-widget.c @@ -594,14 +594,16 @@ surface_small_enough(cairo_surface_t* surface, cairo_surface_t* old) const unsigned int width = cairo_image_surface_get_width(surface); const unsigned int height = cairo_image_surface_get_height(surface); - if (width * height > THUMBNAIL_MAX_SIZE) + if (width * height > THUMBNAIL_MAX_SIZE) { return false; + } if (old != NULL) { const unsigned int width_old = cairo_image_surface_get_width(old); const unsigned int height_old = cairo_image_surface_get_height(old); - if (width * height < width_old * height_old) + if (width * height < width_old * height_old) { return false; + } } return true; @@ -613,8 +615,9 @@ draw_thumbnail_image(cairo_surface_t* surface) unsigned int width = cairo_image_surface_get_width(surface); unsigned int height = cairo_image_surface_get_height(surface); double scale = sqrt((double)THUMBNAIL_INITIAL_SIZE / (width * height)); - if (scale > THUMBNAIL_MAX_SCALE) + if (scale > THUMBNAIL_MAX_SCALE) { scale = THUMBNAIL_MAX_SCALE; + } width = width * scale; height = height * scale; @@ -647,8 +650,9 @@ zathura_page_widget_update_surface(ZathuraPage* widget, cairo_surface_t* surface cairo_surface_reference(surface); if (surface_small_enough(surface, priv->thumbnail)) { - if (priv->thumbnail != NULL) + if (priv->thumbnail != NULL) { cairo_surface_destroy(priv->thumbnail); + } priv->thumbnail = surface; cairo_surface_reference(surface); } else if (new_render) { diff --git a/shortcuts.c b/shortcuts.c index 706b497..23c9ed8 100644 --- a/shortcuts.c +++ b/shortcuts.c @@ -1406,8 +1406,9 @@ sc_zoom(girara_session_t* session, girara_argument_t* argument, girara_event_t* } const double new_zoom = zathura_document_get_scale(zathura->document); - if (fabs(new_zoom - old_zoom) <= DBL_EPSILON) + if (fabs(new_zoom - old_zoom) <= DBL_EPSILON) { return false; + } render_all(zathura); refresh_view(zathura);