From 3b130029b2d7e7a40752fcda43ccd26235da39dc Mon Sep 17 00:00:00 2001 From: Vincent Emonet Date: Fri, 7 Jul 2023 21:12:53 +0200 Subject: [PATCH] fmt --- .github/ISSUE_TEMPLATE/bug.yml | 1 - .github/ISSUE_TEMPLATE/feature_request.yml | 5 ++--- .github/workflows/release.yml | 1 - src-tauri/src/main.rs | 2 +- 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index ffdbd2b..e8c3d49 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -1,4 +1,3 @@ - name: 🐞 Bug Report title: '🐞 ' description: Report a bug diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 744d6c1..5eb351b 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,6 +1,5 @@ - -name: 🍪 Feature request -title: '🍪 ' +name: 💡 Feature request +title: '💡 ' description: Suggest an idea. labels: ['type: enhancement'] diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 75c8368..234b514 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,7 +53,6 @@ jobs: releaseDraft: false prerelease: false - publish-flatpak: needs: publish-tauri permissions: diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index f1bedf7..6d985e4 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -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(); });