diff --git a/contrib/brushexport/plugin.cpp b/contrib/brushexport/plugin.cpp index 58187871..67e1cc4c 100644 --- a/contrib/brushexport/plugin.cpp +++ b/contrib/brushexport/plugin.cpp @@ -64,10 +64,10 @@ const char* getName(){ return "Brush export Plugin"; } const char* getCommandList(){ - return "Export selected as Wavefront Object;About"; + return "Export .obj;About"; } const char* getCommandTitleList(){ - return ""; + return "Export selected as Wavefront Object;About"; } void dispatch( const char* command, float* vMin, float* vMax, bool bSingleBrush ){ @@ -77,7 +77,7 @@ void dispatch( const char* command, float* vMin, float* vMax, bool bSingleBrush eMB_OK, eMB_ICONDEFAULT ); } - else if ( string_equal( command, "Export selected as Wavefront Object" ) ) { + else if ( string_equal( command, "Export .obj" ) ) { if ( IsWindowOpen() ) { DestroyWindow(); } diff --git a/radiant/commands.cpp b/radiant/commands.cpp index 32bc0add..c58b08ba 100644 --- a/radiant/commands.cpp +++ b/radiant/commands.cpp @@ -482,7 +482,7 @@ public: if ( !m_commandList.failed() ) { int l = strlen( name ); m_commandList << name; - while ( l++ < 25 ) + while ( l++ < 32 ) m_commandList << ' '; m_commandList << modifiers.c_str() << '\n'; }