style(lint): fix some files lint
This commit is contained in:
parent
33d13af6d1
commit
4a929240df
|
@ -309,7 +309,8 @@ void Item::updateImage() {
|
||||||
pixbuf = pixbuf->scale_simple(width, scaled_icon_size, Gdk::InterpType::INTERP_BILINEAR);
|
pixbuf = pixbuf->scale_simple(width, scaled_icon_size, Gdk::InterpType::INTERP_BILINEAR);
|
||||||
}
|
}
|
||||||
|
|
||||||
auto surface = Gdk::Cairo::create_surface_from_pixbuf(pixbuf, image.get_scale_factor(), image.get_window());
|
auto surface =
|
||||||
|
Gdk::Cairo::create_surface_from_pixbuf(pixbuf, image.get_scale_factor(), image.get_window());
|
||||||
image.set(surface);
|
image.set(surface);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -187,10 +187,11 @@ bool Task::image_load_icon(Gtk::Image &image, const Glib::RefPtr<Gtk::IconTheme>
|
||||||
|
|
||||||
if (pixbuf) {
|
if (pixbuf) {
|
||||||
if (pixbuf->get_width() != scaled_icon_size) {
|
if (pixbuf->get_width() != scaled_icon_size) {
|
||||||
int width = scaled_icon_size * pixbuf->get_width() / pixbuf->get_height();
|
int width = scaled_icon_size * pixbuf->get_width() / pixbuf->get_height();
|
||||||
pixbuf = pixbuf->scale_simple(width, scaled_icon_size, Gdk::InterpType::INTERP_BILINEAR);
|
pixbuf = pixbuf->scale_simple(width, scaled_icon_size, Gdk::InterpType::INTERP_BILINEAR);
|
||||||
}
|
}
|
||||||
auto surface = Gdk::Cairo::create_surface_from_pixbuf(pixbuf, image.get_scale_factor(), image.get_window());
|
auto surface = Gdk::Cairo::create_surface_from_pixbuf(pixbuf, image.get_scale_factor(),
|
||||||
|
image.get_window());
|
||||||
image.set(surface);
|
image.set(surface);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue