Browse Source

Merge pull request #37744 from madmiraal/fix-X11-device-info-precision-loss

Fix loss of precision in X11 device info.
Rémi Verschelde 5 years ago
parent
commit
7e93554961
1 changed files with 4 additions and 4 deletions
  1. 4 4
      platform/linuxbsd/display_server_x11.cpp

+ 4 - 4
platform/linuxbsd/display_server_x11.cpp

@@ -254,10 +254,10 @@ bool DisplayServerX11::_refresh_device_info() {
 		bool absolute_mode = false;
 		int resolution_x = 0;
 		int resolution_y = 0;
-		int range_min_x = 0;
-		int range_min_y = 0;
-		int range_max_x = 0;
-		int range_max_y = 0;
+		double range_min_x = 0;
+		double range_min_y = 0;
+		double range_max_x = 0;
+		double range_max_y = 0;
 		int pressure_resolution = 0;
 		int tilt_resolution_x = 0;
 		int tilt_resolution_y = 0;