From 034f05eebaaaa09f951370055f54cebe3812f3d9 Mon Sep 17 00:00:00 2001 From: Piotr Siuszko Date: Sun, 25 Sep 2022 21:35:56 +0200 Subject: [PATCH] Remove unused button --- egui_client/src/hub_client.rs | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/egui_client/src/hub_client.rs b/egui_client/src/hub_client.rs index a5f34f9..b5f0cbf 100644 --- a/egui_client/src/hub_client.rs +++ b/egui_client/src/hub_client.rs @@ -275,7 +275,7 @@ impl HubClient { body.rows(text_height, 1, |_, mut row| { row.col(|ui| { add_header(ui); - }); + });row.col(|_ui| {}); row.col(|ui| { ui.vertical_centered_justified(|ui| { ui.add_space(VERTICAL_SPACING); @@ -286,16 +286,6 @@ impl HubClient { {} }); }); - row.col(|ui| { - ui.vertical_centered_justified(|ui| { - ui.add_space(VERTICAL_SPACING); - if ui - .button("Create new") - .on_hover_text("Not implemented yet") - .clicked() - {} - }); - }); }); }); }