mirror of
https://github.com/Genymobile/scrcpy
synced 2025-01-16 12:06:39 +00:00
Turn screen on in control()
Turning the screen on is semantically associated to control(): only creating the EventController object should not turn the screen on.
This commit is contained in:
parent
523097eadf
commit
063cfd1326
@ -28,9 +28,6 @@ public class EventController {
|
||||
this.device = device;
|
||||
this.connection = connection;
|
||||
initPointer();
|
||||
|
||||
// on start, turn screen on
|
||||
turnScreenOn();
|
||||
}
|
||||
|
||||
private void initPointer() {
|
||||
@ -61,6 +58,9 @@ public class EventController {
|
||||
}
|
||||
|
||||
public void control() throws IOException {
|
||||
// on start, turn screen on
|
||||
turnScreenOn();
|
||||
|
||||
while (true) {
|
||||
handleEvent();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user