Kaydet (Commit) 37928c2a authored tarafından Szymon Kłos's avatar Szymon Kłos

RemoteFilesDialog: enable OK button when file name isn't empty

Change-Id: Idf84d4d46a72c3fb339e28c1f3923cd2f0f3c12d
üst 6f694a6d
...@@ -505,6 +505,9 @@ FileViewResult RemoteFilesDialog::OpenURL( OUString sURL ) ...@@ -505,6 +505,9 @@ FileViewResult RemoteFilesDialog::OpenURL( OUString sURL )
m_pFilter_lb->Enable( true ); m_pFilter_lb->Enable( true );
m_pName_ed->Enable( true ); m_pName_ed->Enable( true );
m_pContainer->Enable( true ); m_pContainer->Enable( true );
if( !m_pName_ed->GetText().isEmpty() )
m_pOk_btn->Enable( true );
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment