diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-03-04 16:20:54 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2024-03-04 16:20:54 +0100 |
| commit | 7777a503ada1d7d7ae2e30897efa52bcd0b36df6 (patch) | |
| tree | 51f0dccfbd7b71f7145216330a9e49ab89a11056 /src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx | |
| parent | 5ba756e60aa7b988399189c4df0eb72cdf0364c8 (diff) | |
Implement Fl_Wayland_Screen_Driver::base_scale(int numscreen)
Diffstat (limited to 'src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx')
| -rw-r--r-- | src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx b/src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx index 6a4692f64..2a0e08790 100644 --- a/src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx +++ b/src/drivers/Wayland/Fl_Wayland_Screen_Driver.cxx @@ -1877,6 +1877,11 @@ int Fl_Wayland_Screen_Driver::get_key(int k) { } +float Fl_Wayland_Screen_Driver::base_scale(int numscreen) { + return 1.f; +} + + struct wl_display *fl_wl_display() { return Fl_Wayland_Screen_Driver::wl_display; } |
