diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-01-27 08:35:23 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-01-27 08:35:23 +0000 |
commit | c0c1d245a7fc8e62640bc6b73183d9116b96e0d7 (patch) | |
tree | 7d27d8bd06aa2426acdc353f8e673e64c64f54c6 | |
parent | 16641a8c1a7583c4f3c9ca2c57f327bcd07ad8b4 (diff) | |
download | control-center-c0c1d245a7fc8e62640bc6b73183d9116b96e0d7.tar control-center-c0c1d245a7fc8e62640bc6b73183d9116b96e0d7.tar.gz control-center-c0c1d245a7fc8e62640bc6b73183d9116b96e0d7.tar.bz2 control-center-c0c1d245a7fc8e62640bc6b73183d9116b96e0d7.tar.xz control-center-c0c1d245a7fc8e62640bc6b73183d9116b96e0d7.zip |
"about" window: contributor list get focus which is not displayed nicely
-rwxr-xr-x | control-center | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/control-center b/control-center index 878c9c5a..4305806c 100755 --- a/control-center +++ b/control-center @@ -808,6 +808,7 @@ sub about_mdk_cc { my $tree_model = Gtk2::TreeStore->new(Gtk2::GType->STRING, Gtk2::GType->STRING, Gtk2::GType->STRING); my $list = Gtk2::TreeView->new_with_model($tree_model); + $list->can_focus(0); each_index { $list->append_column(Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererText->new, 'text' => $::i)) } 0..2; $list->set_headers_visible(0); |