Explorar el Código

app: put enable-plugins feature as default

jkds hace 7 meses
padre
commit
92cbce6df9
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1 1
      bin/app/Makefile
  2. 1 1
      bin/app/src/app/mod.rs

+ 1 - 1
bin/app/Makefile

@@ -22,7 +22,7 @@ DEBUG_FEATURES = --features=enable-filelog,enable-plugins
 
 #DEV_FEATURES = --features=enable-filelog,enable-netdebug,emulate-android
 #DEV_FEATURES = --features=enable-filelog,enable-netdebug,enable-plugins
-DEV_FEATURES = --features=schema-app
+DEV_FEATURES = --features=schema-app,enable-plugins
 
 default: build-release
 	./darkfi-app

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

@@ -94,7 +94,7 @@ impl App {
             screen_density / 2.625
         };
         #[cfg(not(target_os = "android"))]
-        let window_scale = 1.2;
+        let window_scale = 1.;
 
         d!("Setting window scale to {window_scale}");