MODIFIED: #1471 There shouldn't be an error message when clicking cancel in the open file dialog.
This commit is contained in:
parent
1667365842
commit
0ce956b71a
1 changed files with 3 additions and 9 deletions
|
@ -138,19 +138,13 @@ namespace GUIEditor
|
|||
tr( "All XML files (*.xml)" ) );
|
||||
|
||||
setCursor( Qt::WaitCursor );
|
||||
if( !fileName.isEmpty() )
|
||||
if( fileName.isEmpty() )
|
||||
{
|
||||
_lastDir = QFileInfo( fileName ).absolutePath();
|
||||
}
|
||||
else
|
||||
{
|
||||
QMessageBox::critical( this,
|
||||
tr( "Error opening project file" ),
|
||||
tr( "Cannot open the specified project file!" ) );
|
||||
|
||||
setCursor( Qt::ArrowCursor );
|
||||
return;
|
||||
}
|
||||
|
||||
_lastDir = QFileInfo( fileName ).absolutePath();
|
||||
|
||||
projectParser.clear();
|
||||
|
||||
|
|
Loading…
Reference in a new issue