From 08682249a3e30bc1043599a28d020108be88e0a1 Mon Sep 17 00:00:00 2001 From: Steven Powell Date: Mon, 18 Apr 2022 15:53:51 -0700 Subject: [PATCH] add user flag to gui commands --- gui/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/window.cpp b/gui/window.cpp index 033309818d..5ca295c2a6 100644 --- a/gui/window.cpp +++ b/gui/window.cpp @@ -519,7 +519,7 @@ bool Window::sendMinikubeCommand(QStringList cmds, QString &text) if (program.isEmpty()) { return false; } - QStringList arguments; + QStringList arguments = { "--user", "minikube-gui" }; arguments << cmds; QProcess *process = new QProcess(this);