From 29c7f9cddfb035eb367f4ea5021adf26db12bdee Mon Sep 17 00:00:00 2001 From: johannes hanika Date: Fri, 14 Jun 2024 13:54:21 +0200 Subject: [PATCH] lighttable: print version string in settings expander --- src/gui/render_lighttable.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui/render_lighttable.c b/src/gui/render_lighttable.c index 9b4c84a2..b5394d08 100644 --- a/src/gui/render_lighttable.c +++ b/src/gui/render_lighttable.c @@ -1,4 +1,5 @@ // the imgui render functions for the lighttable view +#include "core/version.h" #include "gui/view.h" #include "gui/gui.h" #include "db/thumbnails.h" @@ -518,6 +519,8 @@ void render_lighttable_right_panel() nk_layout_row_dynamic(&vkdt.ctx, row_height, 1); if(nk_button_label(ctx, "hotkeys")) dt_gui_edit_hotkeys(); + + nk_label(&vkdt.ctx, "vkdt version "VKDT_VERSION, NK_TEXT_LEFT); nk_tree_pop(ctx); }