diff options
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | src/ui.cc | 7 |
2 files changed, 10 insertions, 4 deletions
@@ -47,6 +47,13 @@ Version 0.6.7 "I said 'Step pause turn * [cmdline]: Use arch-qualified names in 'Provided by' for virtual packages (LP: #972847) + * [curses]: Preview screen ignores Pkg-Display-Limit + + Previously it would apply that limit if + UI::Preview-Limit was not set. This was causing + confusion and it is more useful to have these as two + clearly distinct settings. (LP: #381507) + - Build system changes: * [all]: Include build of gtest when building gmock. (Closes: #670403) @@ -1374,10 +1374,9 @@ static void do_show_preview() grp=new pkg_grouppolicy_mode_factory(new pkg_grouppolicy_end_factory); } - if(aptcfg->Exists(PACKAGE "::UI::Preview-Limit")) - active_preview_tree=pkg_tree::create(grpstr.c_str(), grp, cw::util::transcode(aptcfg->Find(PACKAGE "::UI::Preview-Limit").c_str())); - else - active_preview_tree=pkg_tree::create(grpstr.c_str(), grp); + const std::wstring limitstr = + cw::util::transcode(aptcfg->Find(PACKAGE "::UI::Preview-Limit", "")); + active_preview_tree=pkg_tree::create(grpstr.c_str(), grp, limitstr.c_str()); active_preview=make_default_view(active_preview_tree, &active_preview_tree->selected_signal, |