mirror of
https://github.com/aljazceru/notedeck.git
synced 2026-01-10 20:04:20 +01:00
column: only show delete button when not navigating
This is pretty confusing otherwise Changelog-Changed: Only show column delete button when not navigating Fixes: https://github.com/damus-io/notedeck/issues/548 Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
@@ -65,7 +65,7 @@ impl<'a> NavTitle<'a> {
|
||||
let delete_button_resp =
|
||||
self.title(ui, self.routes.last().unwrap(), back_button_resp.is_some());
|
||||
|
||||
if delete_button_resp.clicked() {
|
||||
if delete_button_resp.map_or(false, |r| r.clicked()) {
|
||||
Some(RenderNavAction::RemoveColumn)
|
||||
} else if back_button_resp.map_or(false, |r| r.clicked()) {
|
||||
Some(RenderNavAction::Back)
|
||||
@@ -203,19 +203,25 @@ impl<'a> NavTitle<'a> {
|
||||
);
|
||||
}
|
||||
|
||||
fn title(&mut self, ui: &mut egui::Ui, top: &Route, right: bool) -> egui::Response {
|
||||
fn title(
|
||||
&mut self,
|
||||
ui: &mut egui::Ui,
|
||||
top: &Route,
|
||||
navigating: bool,
|
||||
) -> Option<egui::Response> {
|
||||
self.title_pfp(ui, top);
|
||||
|
||||
if !right {
|
||||
if !navigating {
|
||||
self.title_label(ui, top);
|
||||
}
|
||||
|
||||
ui.with_layout(egui::Layout::right_to_left(egui::Align::Center), |ui| {
|
||||
let r = self.delete_column_button(ui, 32.0);
|
||||
if right {
|
||||
if navigating {
|
||||
self.title_label(ui, top);
|
||||
None
|
||||
} else {
|
||||
Some(self.delete_column_button(ui, 32.0))
|
||||
}
|
||||
r
|
||||
})
|
||||
.inner
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user