From 6b72fe3b2cdb0dc565b63553c08a435681ea8f94 Mon Sep 17 00:00:00 2001 From: klugier Date: Sun, 6 Dec 2020 17:42:11 +0000 Subject: [PATCH] Ide: .cosmetics in run options. git-svn-id: svn://ultimatepp.org/upp/trunk@15567 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/ide/Debug.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/uppsrc/ide/Debug.cpp b/uppsrc/ide/Debug.cpp index ad08a8b70..282217b69 100644 --- a/uppsrc/ide/Debug.cpp +++ b/uppsrc/ide/Debug.cpp @@ -34,11 +34,6 @@ void Ide::RunArgs() { dlg.arg.SerializeList(ss); } - SaveFileButton stdout_browse("Save STDOUT as"); - stdout_browse.Type("Text files (*.txt)", "*.txt").AllFilesType(); - stdout_browse.Tip("Select file.."); - stdout_browse.Attach(dlg.stdout_file); - FileSelectSaveAs(dlg.stdout_file, dlg.stdout_fileb, "Text files (*.txt)\t*.txt\nLog files (*.log)\t*.log\nAll files (*.*)\t*.*"); @@ -76,6 +71,7 @@ void Ide::RunArgs() { bool b = ~dlg.runmode == RUN_FILE; dlg.stdout_file_lbl.Enable(b); dlg.stdout_file.Enable(b); + dlg.stdout_fileb.Enable(b); int rm = ~dlg.runmode; dlg.stdout_file.Enable(rm == RUN_FILE || rm == RUN_FILE_CONSOLE); dlg.utf8.Enable(rm != RUN_WINDOW);