Przeglądaj źródła

app: put enable-plugins feature as default

jkds 7 miesięcy temu
rodzic
commit
92cbce6df9
2 zmienionych plików z 2 dodań i 2 usunięć
  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}");