Suppress baseDPI and baseHiDPI hardcoded values
Should fix the issue reported here : https://discuss.pixls.us/t/test-rawtherapee-5-6-rc1/12073/13
This commit is contained in:
@@ -40,11 +40,11 @@ protected:
|
||||
public:
|
||||
|
||||
#ifdef __APPLE__
|
||||
static constexpr double baseDPI = 72;
|
||||
static constexpr double baseHiDPI = 144;
|
||||
static constexpr double baseDPI = 72.;
|
||||
static constexpr double baseHiDPI = 144.;
|
||||
#else
|
||||
static constexpr double baseDPI = 96;
|
||||
static constexpr double baseHiDPI = 192;
|
||||
static constexpr double baseDPI = 96.;
|
||||
static constexpr double baseHiDPI = 192.;
|
||||
#endif
|
||||
|
||||
static void init(Gtk::Window *window);
|
||||
|
Reference in New Issue
Block a user