mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-02 19:46:29 +03:00
Display the stashes creation date. Also add a tooltip text for the stash in order to make easier to read the full name.
Fix in Process::create when parsing command arguments from string. Fix text-align in UITooltip. Fix in GitPlugin refreshing repositories during git lock files changes.
This commit is contained in:
@@ -503,8 +503,15 @@ void GitPlugin::onFileSystemEvent( const FileEvent& ev, const FileInfo& file ) {
|
||||
if ( mShuttingDown || isLoading() )
|
||||
return;
|
||||
|
||||
if ( String::startsWith( file.getFilepath(), mGit->getGitFolder() ) &&
|
||||
( file.getExtension() == "lock" || file.isDirectory() ) )
|
||||
if ( file.isDirectory() )
|
||||
return;
|
||||
|
||||
auto inGitFolder = file.getFilepath().find( "/.git/" ) != std::string::npos;
|
||||
#if EE_PLATFORM == EE_PLATFORM_WIN
|
||||
inGitFolder |= file.getFilepath().find( "\\.git\\" ) != std::string::npos;
|
||||
#endif
|
||||
|
||||
if ( inGitFolder && file.getExtension() == "lock" )
|
||||
return;
|
||||
|
||||
updateUI();
|
||||
|
||||
Reference in New Issue
Block a user