Browse Source

app: disable bugging window scaling code

darkfi 1 year ago
parent
commit
8634742dc4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      bin/app/src/app/mod.rs

+ 2 - 2
bin/app/src/app/mod.rs

@@ -113,8 +113,8 @@ impl App {
         let mut window_scale = 1.;
         let mut window_scale = 1.;
         #[cfg(target_os = "android")]
         #[cfg(target_os = "android")]
         {
         {
-            window_scale = android::get_screen_density() / 2.625;
-            d!("Setting window_scale to {window_scale}");
+            //window_scale = android::get_screen_density() / 2.625;
+            //d!("Setting window_scale to {window_scale}");
         }
         }
 
 
         settings.add_setting("scale", PropertyValue::Float32(window_scale));
         settings.add_setting("scale", PropertyValue::Float32(window_scale));