Skip to content

Commit

Permalink
Correct from source install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Colonial-Dev committed Apr 25, 2024
1 parent 6b7fd66 commit 61cdb0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Dependencies:

Just use `cargo install`, and Deduct will be compiled and added to your `PATH`.
```sh
cargo install --locked --git https://github.com/Colonial-Dev/deduct --branch master
cargo install --locked --git https://github.com/Colonial-Dev/deduct deduct
```

## Getting Started
Expand Down
2 changes: 2 additions & 0 deletions src/ui/popups.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,14 @@ impl Widget for &mut NewProof {
.hint_text("Premises...")
.font(font.clone())
.desired_width(f32::INFINITY)
.margin(Margin::symmetric(0.0, 0.0))
.show(ui);

let c = TextEdit::singleline(&mut self.conclusion)
.hint_text("Conclusion...")
.font(font.clone())
.desired_width(f32::INFINITY)
.margin(Margin::symmetric(0.0, 0.0))
.show(ui);

if p
Expand Down

0 comments on commit 61cdb0e

Please sign in to comment.