summaryrefslogtreecommitdiff
path: root/src/pkg_view.cc
diff options
context:
space:
mode:
authorDaniel Burrows <dburrows@debian.org>2008-04-09 09:03:31 -0700
committerDaniel Burrows <dburrows@debian.org>2008-04-09 09:03:31 -0700
commitd0258c68bd145a3da4eebf5526781ae0e6198ec1 (patch)
treee6444063b32f651dfac9477d51e49a09867fb152 /src/pkg_view.cc
parent38b969a5b6e679e2444c75007a410fa5860d0784 (diff)
downloadaptitude-d0258c68bd145a3da4eebf5526781ae0e6198ec1.tar.gz
Make InfoAreaTabs default to "false".
The reason for this is that after a bit of use, I find that the tabs intrude visually between the short and long descriptions of a package. I'll reinstate them once cwidget has the ability to place tabs at the bottom of the multiplex.
Diffstat (limited to 'src/pkg_view.cc')
-rw-r--r--src/pkg_view.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg_view.cc b/src/pkg_view.cc
index e8981b13..7edfe74d 100644
--- a/src/pkg_view.cc
+++ b/src/pkg_view.cc
@@ -548,7 +548,7 @@ namespace
{
cw::widgets::multiplex_ref m(&mBare);
- m->set_show_tabs(aptcfg->FindB(PACKAGE "::UI::InfoAreaTabs", true));
+ m->set_show_tabs(aptcfg->FindB(PACKAGE "::UI::InfoAreaTabs", false));
}
}
@@ -684,7 +684,7 @@ cw::widget_ref make_package_view(list<package_view_item> &format,
aptcfg->connect(PACKAGE "::UI::InfoAreaTabs",
sigc::bind(sigc::ptr_fun(&do_update_info_area_show_tabs),
m.weak_ref()));
- m->set_show_tabs(aptcfg->FindB(PACKAGE "::UI::InfoAreaTabs", true));
+ m->set_show_tabs(aptcfg->FindB(PACKAGE "::UI::InfoAreaTabs", false));
if(show_reason_first)
lt->show();