feat: Implement interactive popup dragging and resizing #121
Annotations
1 warning
Run clippy action:
tui-prompts/src/text_prompt.rs#L178
warning: the following explicit lifetimes could be elided: 'a
--> tui-prompts/src/text_prompt.rs:178:6
|
178 | impl<'a> TextPrompt<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
178 - impl<'a> TextPrompt<'a> {
178 + impl TextPrompt<'_> {
|
|
Loading