]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/qt-console/pages.cpp
There was an issue with empty directories. The director would print
[bacula/bacula] / bacula / src / qt-console / pages.cpp
index 6aaa7cd2c9e22d387f51a2cfca77682e520ea4f3..2767a584ee40a06d9a4710a4a473c6027dca6680 100644 (file)
@@ -231,8 +231,14 @@ void Pages::treeWidgetName(QString &name)
 void Pages::consoleCommand(QString &command)
 {
    int conn;
+   bool donotify = false;
    if (m_console->availableDirComm(conn))  {
+      if (m_console->is_notify_enabled(conn)) {
+         donotify = true;
+         m_console->notify(conn, false);
+      }
       consoleCommand(command, conn);
+      if (donotify) { m_console->notify(conn, true); }
    }
 }
 void Pages::consoleCommand(QString &command, int conn)