diff options
author | Eike Ziller <[email protected]> | 2025-09-10 14:06:11 +0200 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2025-09-10 12:58:16 +0000 |
commit | 291f8bf7a48cff1819d75f3c4870c755b0d54fd2 (patch) | |
tree | 6c4b8212bfece24754cda55360d0ef403c827d2e | |
parent | 4e8f0b9a87840d39e32e2a3a7da7b3822bac9e9d (diff) |
RunConfiguration: Fix text for category filtering and add tool tip
No book style for check box labels. Add a tool tip that includes a hint
why this might be disabled (which it will be for most users currently)
Amends 73b466c32ef963490dfb66a585fa5f8f2bf3f789
Change-Id: I9b16a8c6943dc09730b539cd85c8d89a487f046c
Reviewed-by: Christian Kandeler <[email protected]>
Reviewed-by: Leena Miettinen <[email protected]>
Reviewed-by: Xavier BESSON (Personal) <[email protected]>
-rw-r--r-- | src/plugins/projectexplorer/runconfigurationaspects.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/runconfigurationaspects.cpp b/src/plugins/projectexplorer/runconfigurationaspects.cpp index f1939e6d124..0d2b654f1ad 100644 --- a/src/plugins/projectexplorer/runconfigurationaspects.cpp +++ b/src/plugins/projectexplorer/runconfigurationaspects.cpp @@ -799,7 +799,11 @@ EnableCategoriesFilterAspect::EnableCategoriesFilterAspect(AspectContainer *cont { setId("EnableCategoriesFilter"); setSettingsKey("RunConfiguration.EnableCategoriesFilter"); - setLabel(Tr::tr("Enable Categories Filtering"), LabelPlacement::AtCheckBox); + setLabel(Tr::tr("Enable logging category filtering"), LabelPlacement::AtCheckBox); + setToolTip( + Tr::tr( + "Enables filtering for logging categories (QLoggingCategory) in the Application " + "Output. Requires Qt 6.11 or later.")); } Interpreter::Interpreter() |