From 936f1553d596aeadfc54c7a29b9fe9ad7e80dd78 Mon Sep 17 00:00:00 2001 From: taynpg Date: Sun, 29 Jun 2025 17:31:17 +0800 Subject: [PATCH] fix: trans form id show err when down. --- Gui/Form/Transform.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gui/Form/Transform.cpp b/Gui/Form/Transform.cpp index 3a19da8..67a4c5e 100644 --- a/Gui/Form/Transform.cpp +++ b/Gui/Form/Transform.cpp @@ -120,8 +120,8 @@ void TransForm::handleUI(const TransTask& task) ui->pedFrom->setPlainText(task.localPath); ui->pedTo->setPlainText(task.remotePath); } else { - ui->edFrom->setText(task.localId); - ui->edTo->setText(task.remoteId); + ui->edFrom->setText(task.remoteId); + ui->edTo->setText(task.localId); ui->pedFrom->setPlainText(task.remotePath); ui->pedTo->setPlainText(task.localPath); }