From ab40f587fab90f4a8b7a55524123c43aa2545773 Mon Sep 17 00:00:00 2001 From: Brendan Hagan Date: Tue, 7 Jun 2022 23:09:46 -0400 Subject: [PATCH] misc: export images at 400% scale instead of 100% --- data/en.mse-locale/locale | 2 +- src/data/format/image.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/en.mse-locale/locale b/data/en.mse-locale/locale index a3f0055e..7c2fb658 100644 --- a/data/en.mse-locale/locale +++ b/data/en.mse-locale/locale @@ -230,7 +230,7 @@ help: Note: You must restart MSE for the changes to take effect. zoom export: (When off, the cards are exported - and copied at 100% size and normal rotation) + and copied at 400% size and normal rotation) # apprentice export set code: A set code is a two character code that is used by Apprentice to refer to a set. diff --git a/src/data/format/image.cpp b/src/data/format/image.cpp index 3b36ad78..7a675b29 100644 --- a/src/data/format/image.cpp +++ b/src/data/format/image.cpp @@ -32,7 +32,7 @@ public: Rotation getRotation() const override; private: bool use_zoom_settings; - double zoom = 1.0; + double zoom = 4.0; double angle = 0.0; }; Rotation UnzoomedDataViewer::getRotation() const {