NOISSUE do not lose selection on mod enable/disable toggle
This commit is contained in:
parent
dfb30d9139
commit
c291946d2a
7 changed files with 99 additions and 60 deletions
|
@ -174,6 +174,11 @@ bool copy::operator()(const QString &offset)
|
|||
bool deletePath(QString path)
|
||||
{
|
||||
bool OK = true;
|
||||
QFileInfo finfo(path);
|
||||
if(finfo.isFile()) {
|
||||
return QFile::remove(path);
|
||||
}
|
||||
|
||||
QDir dir(path);
|
||||
|
||||
if (!dir.exists())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue