Change "Single Instance" to "Open Files in New Window".

This commit is contained in:
Martín Lucas Golini
2024-10-03 00:22:45 -03:00
parent d4187fcdab
commit e7f4c6fa45
4 changed files with 12 additions and 13 deletions

View File

@@ -3084,7 +3084,7 @@ FontTrueType* App::loadFont( const std::string& name, std::string fontPath,
}
bool App::needsRedirectToRunningProcess( std::string file ) {
if ( !mConfig.ui.singleInstance || file.empty() )
if ( mConfig.ui.openFilesInNewWindow || file.empty() )
return false;
bool hasPosition = pathHasPosition( file );