mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-28 16:08:12 +01:00
NO-OP: add clarifying comment
This commit is contained in:
parent
dec7b9a9af
commit
81d1724931
1 changed files with 2 additions and 2 deletions
|
|
@ -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 */
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue