Skip to content

Commit 7d6127f

Browse files
committed
add "..." to learn-more, search-issues menus
1 parent f8d2046 commit 7d6127f

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src-tauri/src/menu.rs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -340,12 +340,17 @@ fn build_window_menu<R: Runtime>(app: &AppHandle<R>) -> tauri::Result<Submenu<R>
340340
}
341341

342342
fn build_help_menu<R: Runtime>(app: &AppHandle<R>) -> tauri::Result<Submenu<R>> {
343-
let learn_more =
344-
MenuItem::with_id(app, ids::HELP_LEARN_MORE, "Learn More", true, None::<&str>)?;
343+
let learn_more = MenuItem::with_id(
344+
app,
345+
ids::HELP_LEARN_MORE,
346+
"Learn More ...",
347+
true,
348+
None::<&str>,
349+
)?;
345350
let search_issues = MenuItem::with_id(
346351
app,
347352
ids::HELP_SEARCH_ISSUES,
348-
"Search Issues",
353+
"Search Issues ...",
349354
true,
350355
None::<&str>,
351356
)?;

0 commit comments

Comments
 (0)