Merge branch 'rolling' into feat-inform-user-when-no-engines-are-selected

This commit is contained in:
alamin655 2023-09-23 17:12:58 +05:30 committed by GitHub
commit 017036ed00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 201 additions and 114 deletions

View file

@ -26,4 +26,6 @@ pub struct Cookie<'a> {
pub colorscheme: &'a str,
/// It stores the user selected upstream search engines selected from the UI.
pub engines: Vec<&'a str>,
/// It stores the user selected safe search level from the UI.
pub safe_search_level: u8,
}