From c327379b819db971512ead75b8abf2a384316748 Mon Sep 17 00:00:00 2001 From: ralfbrown Date: Tue, 5 Aug 2025 11:06:59 -0400 Subject: [PATCH] enhance history module tooltip Expand the tooltip in response to discussion on #19163. --- src/libs/history.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/libs/history.c b/src/libs/history.c index 5c74d153d5b2..8a690380fff9 100644 --- a/src/libs/history.c +++ b/src/libs/history.c @@ -101,8 +101,12 @@ const char *name(dt_lib_module_t *self) const char *description(dt_lib_module_t *self) { return _("display the sequence of edit actions\n" - "and allow temporarily returning to\n" - "an earlier state of the edit"); + "- click on an entry to temporarily return to\n" + " that earlier state of the edit\n" + " (warning: any edits will be made to that\n" + " earlier state, losing later changes)\n" + "- shift-click to focus that module without\n" + " changing the edit state"); } dt_view_type_flags_t views(dt_lib_module_t *self)