Browse Source

add last focus value holder

master
yggverse 1 month ago
parent
commit
f900fa80b1
  1. 19
      src/app/browser/window/tab/item/page/navigation/request/widget.rs

19
src/app/browser/window/tab/item/page/navigation/request/widget.rs

@ -54,17 +54,24 @@ impl Widget {
action_page_reload.activate(None); action_page_reload.activate(None);
}); });
gobject.connect_state_flags_changed(|this, state| { gobject.connect_state_flags_changed({
// Select entire text on key release // Define last focus state container
let has_focus = RefCell::new(false);
move |this, state| {
// Select entire text on first click release
// this behavior implemented in most web-browsers, // this behavior implemented in most web-browsers,
// to simply overwrite current request with new value // to simply overwrite current request with new value
// Note: // Note:
// * Custom GestureClick is not option here, as GTK Entry already has default one // * Custom GestureClick is not an option here, as GTK Entry has default controller
if state.contains(StateFlags::ACTIVE | StateFlags::FOCUS_WITHIN) { // * This is experimental feature as does not follow native GTK behavior @TODO test
// Continue on first focus event if !has_focus.take()
if this.selection_bounds().is_none() { && state.contains(StateFlags::ACTIVE | StateFlags::FOCUS_WITHIN)
&& this.selection_bounds().is_none()
{
this.select_region(0, this.text_length().into()); this.select_region(0, this.text_length().into());
} }
// Update last focus state
has_focus.replace(state.contains(StateFlags::FOCUS_WITHIN));
} }
}); });

Loading…
Cancel
Save