From 359e8e73ee729e5285370767e1e9e7b7ce8f0247 Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Mon, 6 Jan 2025 08:01:37 +0100 Subject: [PATCH] doc: Update HelpPanelFloppy with new help text for save button Enhanced the help text in `HelpPanelFloppy` to include information about the "Save config for disk" button. --- src/osdep/gui/PanelFloppy.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/osdep/gui/PanelFloppy.cpp b/src/osdep/gui/PanelFloppy.cpp index 46d8d5d6..68750328 100644 --- a/src/osdep/gui/PanelFloppy.cpp +++ b/src/osdep/gui/PanelFloppy.cpp @@ -727,5 +727,8 @@ bool HelpPanelFloppy(std::vector& helptext) helptext.emplace_back(" "); helptext.emplace_back(R"(You can also use the "Create 3.5" DD disk" and "Create 3.5" HD disk" buttons, to make)"); helptext.emplace_back("a new and empty disk image, for use with the emulator."); + helptext.emplace_back(" "); + helptext.emplace_back("The \"Save config for disk\" button will save the current configuration to a file with"); + helptext.emplace_back("the same name as the disk image file."); return true; }