Explorar el Código

task info now also shows env file

logicp hace 5 años
padre
commit
4a35227166
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/mainwindow.cpp

+ 2 - 1
src/mainwindow.cpp

@@ -369,7 +369,8 @@ QString MainWindow::parseTaskInfo(StringVec v) {
   } else {
     return QString{
         "  UUID - " + v.at(0) + "\n  ID - " + v.at(1) + "\n  APP - " +
-        q_client->getAppName(std::stoi(v.at(2).toUtf8().constData()))};
+        q_client->getAppName(std::stoi(v.at(2).toUtf8().constData())) +
+        "\n ENV - " + v.at(3)};
   }
 }