From e1f2e6c4fc832e40dddf4f6791c34de9a1f6bc84 Mon Sep 17 00:00:00 2001 From: Thomas Debesse Date: Mon, 20 Feb 2023 16:21:26 +0100 Subject: [PATCH] radiant: do not store useless commandlist.txt It is only written, never read, shortcuts.ini is used instead. --- radiant/commands.cpp | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/radiant/commands.cpp b/radiant/commands.cpp index 9c1b7682..92a2d00c 100644 --- a/radiant/commands.cpp +++ b/radiant/commands.cpp @@ -427,31 +427,19 @@ void DoCommandListDlg(){ { // Initialize dialog - StringOutputStream path( 256 ); - path << SettingsPath_get() << "commandlist.txt"; - globalOutputStream() << "Writing the command list to " << path.c_str() << "\n"; class BuildCommandList : public CommandVisitor { - TextFileOutputStream m_commandList; ui::ListStore m_store; public: - BuildCommandList( const char* filename, ui::ListStore store ) : m_commandList( filename ), m_store( store ){ + BuildCommandList( ui::ListStore store ) : m_store( store ){ } void visit( const char* name, Accelerator& accelerator ){ StringOutputStream modifiers; modifiers << accelerator; m_store.append(0, name, 1, modifiers.c_str(), 2, false, 3, 800); - - if ( !m_commandList.failed() ) { - int l = strlen( name ); - m_commandList << name; - while ( l++ < 25 ) - m_commandList << ' '; - m_commandList << modifiers.c_str() << '\n'; - } } - } visitor( path.c_str(), store ); + } visitor( store ); GlobalShortcuts_foreach( visitor ); } -- 2.39.2