Skip to content

Commit

Permalink
1. артефакты при altf9 из комбобокса.
Browse files Browse the repository at this point in the history
  • Loading branch information
zg0 committed May 19, 2016
1 parent a2117d7 commit 2ba6b37
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
6 changes: 5 additions & 1 deletion far/changelog
@@ -1,4 +1,8 @@
drkns 19.05.2016 01:35:59 +0200 - build 4680
zg 19.05.2016 18:08:09 +0200 - build 4681

1. артефакты при altf9 из комбобокса.

drkns 19.05.2016 01:35:59 +0200 - build 4680

1. Уточнение 4679.

Expand Down
9 changes: 3 additions & 6 deletions far/manager.cpp
Expand Up @@ -271,10 +271,8 @@ BOOL Manager::ExitAll()

void Manager::RefreshAll()
{
if (!m_windows.empty())
{
RefreshWindow(m_windows.front());
}
std::for_each(CONST_RANGE(m_windows, ii) { RefreshWindow(ii); });
std::for_each(CONST_RANGE(m_modalWindows, ii) { RefreshWindow(ii); });
}

void Manager::CloseAll()
Expand Down Expand Up @@ -1223,8 +1221,7 @@ void Manager::ResizeAllWindows()
std::for_each(ALL_CONST_RANGE(m_windows), std::mem_fn(&window::ResizeConsole));
std::for_each(ALL_CONST_RANGE(m_modalWindows), std::mem_fn(&window::ResizeConsole));

ImmediateHide();
RefreshWindow();
RefreshAll();
Global->ScrBuf->Unlock();
}

Expand Down
2 changes: 1 addition & 1 deletion far/vbuild.m4
@@ -1 +1 @@
m4_define(BUILD,4680)m4_dnl
m4_define(BUILD,4681)m4_dnl

0 comments on commit 2ba6b37

Please sign in to comment.