Skip to content

Commit

Permalink
Set the number of executables per page to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
ruanformigoni committed Jan 6, 2025
1 parent 1d1d79b commit f8712cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gui/wizard/src/wizard/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ fn default_entry(tx: Sender<common::Msg>
// fn default() {{{
pub fn default(tx: Sender<common::Msg>, title: &str)
{
const COUNT_ITEM_PER_PAGE: usize = 20;
const COUNT_ITEM_PER_PAGE: usize = 10;
static QUERY : LazyLock<Mutex<String>> = LazyLock::new(|| Mutex::new(String::new()));
static RESULTS : LazyLock<Mutex<Vec<PathBuf>>> = LazyLock::new(|| Mutex::new(vec![]));
static PAGE : LazyLock<Mutex<usize>> = LazyLock::new(|| Mutex::new(0));
Expand Down
2 changes: 1 addition & 1 deletion gui/wizard/src/wizard/wine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ fn rom_modified() -> Vec<PathBuf>
// pub fn rom() {{{
pub fn rom(tx: Sender<common::Msg>, title: &str)
{
const COUNT_ITEM_PER_PAGE: usize = 4;
const COUNT_ITEM_PER_PAGE: usize = 10;
static QUERY : LazyLock<Mutex<String>> = LazyLock::new(|| Mutex::new(String::new()));
static RESULTS : LazyLock<Mutex<Vec<PathBuf>>> = LazyLock::new(|| Mutex::new(vec![]));
static PAGE : LazyLock<Mutex<usize>> = LazyLock::new(|| Mutex::new(0));
Expand Down

0 comments on commit f8712cb

Please sign in to comment.