mirror of
https://github.com/encounter/bdiff.git
synced 2026-07-09 18:19:34 -07:00
Update stuff
This commit is contained in:
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"rust-analyzer.linkedProjects": [
|
||||
".\\Cargo.toml"
|
||||
"Cargo.toml"
|
||||
]
|
||||
}
|
||||
Generated
+253
-182
File diff suppressed because it is too large
Load Diff
+5
-4
@@ -16,14 +16,15 @@ build = "build.rs"
|
||||
anyhow = "1.0.75"
|
||||
argh = "0.1.12"
|
||||
dtoa = "1.0.9"
|
||||
eframe = { version = "0.22.0", features = ["persistence"] }
|
||||
egui-modal = "0.2.4"
|
||||
eframe = { version = "0.23.0", features = ["persistence"] }
|
||||
egui-modal = "0.2.5"
|
||||
egui_dock = "0.8.0"
|
||||
encoding_rs = "0.8.33"
|
||||
iset = "0.2.2"
|
||||
log = "0.4.20"
|
||||
notify = "6.1.1"
|
||||
parse_int = "0.6.0"
|
||||
rfd = "0.11.4"
|
||||
rfd = "0.12.0"
|
||||
serde = "1.0"
|
||||
serde_json = "1.0"
|
||||
|
||||
@@ -32,4 +33,4 @@ winres = "0.1.12"
|
||||
|
||||
[build-dependencies]
|
||||
anyhow = "1.0.75"
|
||||
vergen = { version = "8.2.4", features = ["build", "cargo", "git", "gitcl"] }
|
||||
vergen = { version = "8.2.5", features = ["build", "cargo", "git", "gitcl"] }
|
||||
|
||||
+2
-3
@@ -6,9 +6,8 @@ use std::{
|
||||
use anyhow::Error;
|
||||
use eframe::{
|
||||
egui::{self, Checkbox},
|
||||
epaint::{Color32, Rounding, Shadow},
|
||||
epaint::{Rounding, Shadow},
|
||||
};
|
||||
|
||||
use egui_modal::Modal;
|
||||
|
||||
use crate::{
|
||||
@@ -388,7 +387,7 @@ impl BdiffApp {
|
||||
ui.text_edit_singleline(&mut self.goto_modal.value)
|
||||
.request_focus();
|
||||
|
||||
ui.label(egui::RichText::new(self.goto_modal.status.clone()).color(Color32::RED));
|
||||
ui.label(egui::RichText::new(self.goto_modal.status.clone()).color(egui::Color32::RED));
|
||||
|
||||
goto_modal.buttons(ui, |ui| {
|
||||
if ui.button("Go").clicked() || ctx.input(|i| i.key_pressed(egui::Key::Enter)) {
|
||||
|
||||
Reference in New Issue
Block a user