Fix cursor focus and selection in input box, add AWS env var warning box, and remove AWS Bedrock login banner

This commit is contained in:
2026-07-02 14:54:15 -05:00
parent 4770ac06b5
commit 3769646ca6
1194 changed files with 5312 additions and 8032 deletions
@@ -1,10 +1,8 @@
use std::collections::HashMap;
use galaxyui::keymap::Keystroke;
use galaxyui::platform::OperatingSystem;
use lazy_static::lazy_static;
use galaxyui_core::keymap::Keystroke;
use galaxyui_core::platform::OperatingSystem;
use lazy_static::lazy_static;
use super::mouse::{MouseAction, MouseButton, MouseState};
use super::TermMode;
@@ -291,6 +291,10 @@ fn test_cell_type() {
}
mod offset_point_conversion {
use string_offset::ByteOffset;
use crate::model::grid::FlatStorage;
use crate::model::Point;
#[test]
fn test_normal_cell() {
+1 -2
View File
@@ -4,9 +4,8 @@ use std::cmp::Ordering;
use std::fmt;
use std::ops::{Add, AddAssign, Range, Sub, SubAssign};
use galaxyui::units::Lines;
use serde::{Deserialize, Serialize};
use galaxyui_core::units::Lines;
use serde::{Deserialize, Serialize};
use super::grid::Dimensions;