NOISSUE do not attempt to stop watching world folders if they are not being watched
This commit is contained in:
parent
cf0694a0cb
commit
c44d41ee9b
@ -37,6 +37,10 @@ WorldList::WorldList(const QString &dir)
|
|||||||
|
|
||||||
void WorldList::startWatching()
|
void WorldList::startWatching()
|
||||||
{
|
{
|
||||||
|
if(is_watching)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
update();
|
update();
|
||||||
is_watching = m_watcher->addPath(m_dir.absolutePath());
|
is_watching = m_watcher->addPath(m_dir.absolutePath());
|
||||||
if (is_watching)
|
if (is_watching)
|
||||||
@ -51,6 +55,10 @@ void WorldList::startWatching()
|
|||||||
|
|
||||||
void WorldList::stopWatching()
|
void WorldList::stopWatching()
|
||||||
{
|
{
|
||||||
|
if(!is_watching)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
is_watching = !m_watcher->removePath(m_dir.absolutePath());
|
is_watching = !m_watcher->removePath(m_dir.absolutePath());
|
||||||
if (!is_watching)
|
if (!is_watching)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user