From 81d172493145ea2960f3fee698cd62991c97e7f1 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 2 May 2024 15:25:34 -0600 Subject: [PATCH] NO-OP: add clarifying comment --- libs/gtkmm2ext/utils.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/gtkmm2ext/utils.cc b/libs/gtkmm2ext/utils.cc index 9f24f928e3..144114251a 100644 --- a/libs/gtkmm2ext/utils.cc +++ b/libs/gtkmm2ext/utils.cc @@ -194,10 +194,10 @@ Gtkmm2ext::pixbuf_from_string(const string& name, const Pango::FontDescription& int width, height; pixel_size (name, font, width, height); if (clip_width <= 0) { - clip_width = width - clip_width; + clip_width = width - clip_width; /* this is an addition because clip_width is negative */ } if (clip_height <= 0) { - clip_height = height - clip_height; + clip_height = height - clip_height; /* this is an addition because clip_height is negative */ } }