1
0
Fork 0

Get DPI info from GTK

This commit is contained in:
wangqr 2019-05-17 03:01:31 -04:00
parent 2cb92a5f74
commit 51ec239770
1 changed files with 8 additions and 2 deletions

View File

@ -214,9 +214,15 @@ void AddFullScreenButton(wxWindow *) { }
void SetFloatOnParent(wxWindow *) { }
// OS X implementation in retina_helper.mm
RetinaHelper::RetinaHelper(wxWindow *) { }
RetinaHelper::RetinaHelper(wxWindow* w) { window = w; }
RetinaHelper::~RetinaHelper() { }
int RetinaHelper::GetScaleFactor() const { return 1; }
int RetinaHelper::GetScaleFactor() const {
#ifdef __WXGTK__
return int(window->GetContentScaleFactor());
#else
return 1;
#endif
}
// OS X implementation in scintilla_ime.mm
namespace osx { namespace ime {