mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-29 17:46:29 +03:00
Changed default text hinting.
Added Dart and Objective-C support. ecode: Show folder name in window title when opening a folder/project.
This commit is contained in:
@@ -112,7 +112,11 @@ void App::updateEditorTitle( UICodeEditor* editor ) {
|
||||
}
|
||||
|
||||
void App::setAppTitle( const std::string& title ) {
|
||||
mWindow->setTitle( mWindowTitle + String( title.empty() ? "" : " - " + title ) );
|
||||
mWindow->setTitle( mWindowTitle +
|
||||
String( mCurrentProject.empty()
|
||||
? ""
|
||||
: " - " + FileSystem::fileNameFromPath( mCurrentProject ) ) +
|
||||
String( title.empty() ? "" : " - " + title ) );
|
||||
}
|
||||
|
||||
void App::onDocumentModified( UICodeEditor* editor, TextDocument& ) {
|
||||
|
||||
Reference in New Issue
Block a user