From c749df85746f9151dd8387a5ed8a85a45635532c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Stadler?= Date: Mon, 3 Dec 2007 14:58:04 +0200 Subject: [PATCH] Rename show-find-bar action callback handler --- debug-viewer/GstDebugViewer/Plugins/FindBar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debug-viewer/GstDebugViewer/Plugins/FindBar.py b/debug-viewer/GstDebugViewer/Plugins/FindBar.py index 7f2979b6dd..4e4f9c9918 100644 --- a/debug-viewer/GstDebugViewer/Plugins/FindBar.py +++ b/debug-viewer/GstDebugViewer/Plugins/FindBar.py @@ -194,7 +194,7 @@ class FindBarFeature (FeatureBase): self.bar.hide () action = self.action_group.get_action ("show-find-bar") - handler = self.handle_show_find_bar_action_activate + handler = self.handle_show_find_bar_action_toggled action.connect ("toggled", handler) action = self.action_group.get_action ("goto-previous-search-result") @@ -214,7 +214,7 @@ class FindBarFeature (FeatureBase): window.ui_manager.remove_ui (self.merge_id) self.merge_id = None - def handle_show_find_bar_action_activate (self, action): + def handle_show_find_bar_action_toggled (self, action): if action.props.active: self.bar.show ()