File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
app_pojavlauncher/src/main/java/net/kdt/pojavlaunch Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -203,8 +203,8 @@ public boolean onTouchEvent(MotionEvent e) {
203203 CallbackBridge .sendCursorPos ( e .getX (i ) * LauncherPreferences .PREF_SCALE_FACTOR , e .getY (i ) * LauncherPreferences .PREF_SCALE_FACTOR );
204204 return true ; //mouse event handled successfully
205205 }
206- if (mIngameProcessor == null || mInGUIProcessor == null ) return true ;
207206 TouchControllerUtils .processTouchEvent (e , this );
207+ if (mIngameProcessor == null || mInGUIProcessor == null ) return true ;
208208 return mCurrentTouchProcessor .processTouchEvent (e );
209209 }
210210
Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ public static void initialize(Context context) {
104104 }
105105 MessageTransport transport = UnixSocketTransportKt .UnixSocketTransport (socketName );
106106 proxyClient = new LauncherProxyClient (transport );
107+ proxyClient .run ();
107108 Vibrator vibrator = ContextCompat .getSystemService (context , Vibrator .class );
108109 if (vibrator != null ) {
109110 LauncherProxyClient .VibrationHandler vibrationHandler = new VibrationHandler (vibrator );
You can’t perform that action at this time.
0 commit comments