Skip to content

Commit

Permalink
Fix bug while exiting the process manager
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Sep 4, 2020
1 parent 3b47f0d commit dfdfcdb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions applications/button-capture/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ void redraw_screen(int fd){
update_rect.height = DISPLAYHEIGHT;
update_data.update_marker = 0;
update_data.update_region = update_rect;
update_data.waveform_mode = WAVEFORM_MODE_DU;
update_data.waveform_mode = WAVEFORM_MODE_AUTO;
update_data.update_mode = UPDATE_MODE_FULL;
update_data.dither_mode = EPDC_FLAG_EXP1;
update_data.dither_mode = EPDC_FLAG_USE_DITHERING_MAX;
update_data.temp = TEMP_USE_REMARKABLE_DRAW;
update_data.flags = 0;
ioctl(fd, MXCFB_SEND_UPDATE, &update_data);
Expand Down
4 changes: 2 additions & 2 deletions applications/oxide/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ ApplicationWindow {
id: root
enabled: appsView.enabled
width: appsView.cellWidth
height: appsView.cellHeight
state: "released"
states: [
State { name: "released" },
Expand Down Expand Up @@ -195,8 +196,7 @@ ApplicationWindow {
clip: true
}
MouseArea {
width: root.width
height: appsView.cellHeight
anchors.fill: root
enabled: root.enabled
onPressed: root.state = "pressed"
onReleased: root.state = "released"
Expand Down

0 comments on commit dfdfcdb

Please sign in to comment.