Fix lint error in src/InternalUtils.vala

This commit is contained in:
Jeremy Wootten 2021-04-23 18:39:02 +01:00 committed by Daniel Foré
parent bef79790a6
commit 8d3bbc7635

View File

@ -337,7 +337,7 @@ namespace Gala {
*/
public static int pixel_align (float value) {
var scale_factor = InternalUtils.get_ui_scaling_factor ();
return (int) Math.round (value * scale_factor) / scale_factor;
return (int) Math.round (value * scale_factor) / scale_factor;
}
private static Gtk.StyleContext selection_style_context = null;