Skip to content

Commit

Permalink
screenshot: Don't ignore mouse releases on missing output
Browse files Browse the repository at this point in the history
  • Loading branch information
YaLTeR committed Oct 31, 2023
1 parent 60f8bbb commit 25e701d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screenshot_ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ impl ScreenshotUi {
return false;
}

if !output_data.contains_key(&output) {
if down && !output_data.contains_key(&output) {
return false;
}

Expand Down

0 comments on commit 25e701d

Please sign in to comment.