From 7cbc3cc308ddf69ad672da451a81540c957191f2 Mon Sep 17 00:00:00 2001 From: deathaxe Date: Wed, 17 Jan 2024 18:14:28 +0100 Subject: [PATCH] Drop error dialog, if tags are being build Fixes #223 The error is thrown whenever a command is checked for being enabled. That's useless as related menu items etc. are disabled anyway and a message in status bar is already being printed. --- plugins/cmds.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/cmds.py b/plugins/cmds.py index 9f5eb6c..7e6b10e 100644 --- a/plugins/cmds.py +++ b/plugins/cmds.py @@ -558,8 +558,6 @@ def check_if_building(self, **args): """ if RebuildTags.build_ctags.func.running: status_message("Tags not available until built") - if setting("display_rebuilding_message"): - error_message("Please wait while tags are built") return False return True