viewer: remove padding from viewer

Isn't really necessary, probably added for "aesthetics" but is ultimately a waste of screen real estate
This commit is contained in:
itsmattkc
2022-11-11 10:15:00 -08:00
parent b4e8d74d75
commit 2cf0b4aa8a
-5
View File
@@ -175,11 +175,6 @@ void ViewerSizer::UpdateSize()
double zoom_diff = (zoom_ * 0.01) / current_scale;
child_matrix.scale(zoom_diff, zoom_diff, 1.0);
} else {
// Fit - add a small amount of padding
child_matrix.scale(0.95f, 0.95f);
}
emit RequestScale(child_matrix);