Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Jul 7, 2023
1 parent 72eaac1 commit 3b13002
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

name: 🐞 Bug Report
title: '🐞 '
description: Report a bug
Expand Down
5 changes: 2 additions & 3 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

name: 🍪 Feature request
title: '🍪 '
name: 💡 Feature request
title: '💡 '
description: Suggest an idea.
labels: ['type: enhancement']

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ jobs:
releaseDraft: false
prerelease: false


publish-flatpak:
needs: publish-tauri
permissions:
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ fn main() {
// Close the window automatically when the user clicks out
// Use thread sleep to avoid killing before pasting is done
thread::spawn(move || {
thread::sleep(Duration::from_millis(SPAWN_WAIT*2));
thread::sleep(Duration::from_millis(SPAWN_WAIT * 2));
event.window().close().unwrap();
// event.window().hide().unwrap();
});
Expand Down

0 comments on commit 3b13002

Please sign in to comment.