From 4d5900268b89a2915cc98cf8dbd13818f37431f7 Mon Sep 17 00:00:00 2001 From: David Given Date: Tue, 9 Sep 2025 00:27:49 +0200 Subject: [PATCH] Create a DiskProvider on startup so we go straight into the GUI. --- src/gui2/welcome.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/gui2/welcome.cc b/src/gui2/welcome.cc index ac99e31b..77b58ee8 100644 --- a/src/gui2/welcome.cc +++ b/src/gui2/welcome.cc @@ -321,6 +321,12 @@ namespace hex::plugin::builtin }); } } + + TaskManager::doLaterOnce( + [] + { + ImHexApi::Provider::createProvider("fluxengine.provider.disk"); + }); } }