Skip to content

Commit

Permalink
Async Loader WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
oomek committed Feb 24, 2024
1 parent b2b8716 commit 2d063dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/fe_settings.cpp
Expand Up @@ -632,8 +632,8 @@ void FeSettings::init_display()
set_search_rule( "" );
m_current_search_index = temp_idx;

FeLog() << " m_current_search_index = m_current_display_index " << m_current_search_index << " = " << m_current_display_index << std::endl;
m_current_search_index = m_current_display_index; // This needs to be here
// FeLog() << " m_current_search_index = m_current_display_index " << m_current_search_index << " = " << m_current_display_index << std::endl;
// m_current_search_index = m_current_display_index; // This needs to be here

// Setup m_current_layout_params with all the parameters for our current layout, including
// the 'per_display' layout parameters that are stored separately but that get merged in here
Expand Down Expand Up @@ -726,8 +726,8 @@ void FeSettings::save_state()

if ( display_idx < 0 )
{
FeLog() << " display_idx = m_current_search_index " << display_idx << " = " << m_current_search_index << std::endl;
display_idx = m_current_search_index;
FeLog() << " display_idx = m_current_display_index " << display_idx << " = " << m_current_display_index << std::endl;
display_idx = m_current_display_index;
}

m_rl.save_state();
Expand Down

0 comments on commit 2d063dd

Please sign in to comment.