We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c1e97 commit 0c0595bCopy full SHA for 0c0595b
src/prompts.rs
@@ -123,10 +123,14 @@ impl PromptQueue {
123
let (current_title, current_body) = title_and_body;
124
match state {
125
PromptingState::Prompts => {
126
- current_title.as_str().place(Location::Top, Layout::Centered, false);
+ current_title
127
+ .as_str()
128
+ .place(Location::Top, Layout::Centered, false);
129
#[cfg(target_os = "nanos")]
130
{
- current_body.as_str().place(Location::Custom(15), Layout::Centered, false);
131
+ current_body
132
133
+ .place(Location::Custom(15), Layout::Centered, false);
134
}
135
#[cfg(not(target_os = "nanos"))]
136
0 commit comments