debugger: Change placeholder text for Custom/Run text input (#31264)
Before:  After:  Release Notes: - N/A
This commit is contained in:
parent
d8fc23a5e9
commit
f48b6b583e
1 changed files with 4 additions and 1 deletions
|
@ -750,7 +750,10 @@ impl CustomMode {
|
||||||
|
|
||||||
let program = cx.new(|cx| Editor::single_line(window, cx));
|
let program = cx.new(|cx| Editor::single_line(window, cx));
|
||||||
program.update(cx, |this, cx| {
|
program.update(cx, |this, cx| {
|
||||||
this.set_placeholder_text("Run", cx);
|
this.set_placeholder_text(
|
||||||
|
"ALPHA=\"Windows\" BETA=\"Wen\" your_program --arg1 --arg2=arg3",
|
||||||
|
cx,
|
||||||
|
);
|
||||||
|
|
||||||
if let Some(past_program) = past_program {
|
if let Some(past_program) = past_program {
|
||||||
this.set_text(past_program, window, cx);
|
this.set_text(past_program, window, cx);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue