From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755458AbZIJKqA (ORCPT ); Thu, 10 Sep 2009 06:46:00 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753021AbZIJKp7 (ORCPT ); Thu, 10 Sep 2009 06:45:59 -0400 Received: from mail-fx0-f217.google.com ([209.85.220.217]:48167 "EHLO mail-fx0-f217.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752762AbZIJKp7 (ORCPT ); Thu, 10 Sep 2009 06:45:59 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:date:message-id:x-mailer:mime-version:content-type :content-transfer-encoding; b=lfdPcH6VT+nl6RqkYeT9T0tdVglgAwGZha+lP2Yu+sr6cwaml6Pfg8zPkF2c8yqdNO eCpn6VlIo5jwTgE5YnuX313+Sv9xz+TBdXBlP1S6FsmUS23+D+8vMXslHq3AmcK8bFcq Dt2Vk3z3gbuWnNCh8aTSodpKMiQYLaestEgeU= From: =?UTF-8?q?Diego=20Elio=20=27Flameeyes=27=20Petten=C3=B2?= To: linux-kernel@vger.kernel.org Subject: [PATCH] gconfig: disable "typeahead find" search in treeviews. Date: Thu, 10 Sep 2009 12:45:59 +0200 Message-Id: <1252579559-15513-1-git-send-email-flameeyes@gmail.com> X-Mailer: git-send-email 1.6.4.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org When typeahead find is enabled, using 'y', 'n' and 'm' to change the status of the configuration items will also start up the search system, making you jump around the configuration. Disabling the enable_search property does not mean that search is not possible, it only disables the typeahead; to execute a search in the treeview, you can just call it up explicitly (i.e.: on most systems that will be Ctrl-f). Signed-off-by: Diego Elio 'Flameeyes' Pettenò --- scripts/kconfig/gconf.glade | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/kconfig/gconf.glade b/scripts/kconfig/gconf.glade index 803233f..b1c86c1 100644 --- a/scripts/kconfig/gconf.glade +++ b/scripts/kconfig/gconf.glade @@ -547,7 +547,7 @@ True False False - True + False @@ -582,7 +582,7 @@ True False False - True + False -- 1.6.4.2