Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
+8 -8
View File
@@ -15,11 +15,11 @@ use pathfinder_geometry::{
rect::RectF,
vector::{vec2f, Vector2F},
};
use warp_core::ui::{
use galaxy_core::ui::{
appearance::Appearance,
theme::{color::internal_colors, Fill},
};
use warp_editor::{
use galaxy_editor::{
editor::EditorView,
render::{
element::{
@@ -31,7 +31,7 @@ use warp_editor::{
},
},
};
use warpui::{
use galaxyui::{
elements::{
new_scrollable::{NewScrollableElement, ScrollableAxis},
Align, Axis, Border, ChildAnchor, ConstrainedBox, Container, CornerRadius, Empty, F32Ext,
@@ -56,8 +56,8 @@ use crate::{
},
view_components::action_button::{ActionButtonTheme, SecondaryTheme},
};
use warp_core::features::FeatureFlag;
use warpui::elements::{Hoverable, MouseStateHandle};
use galaxy_core::features::FeatureFlag;
use galaxyui::elements::{Hoverable, MouseStateHandle};
pub const GUTTER_WIDTH: f32 = 94.;
const VERTICAL_DIFF_HUNK_INDICATOR_WIDTH: f32 = 3.;
@@ -915,7 +915,7 @@ impl<V: EditorView> EditorWrapper<V> {
};
let icon = ConstrainedBox::new(
warpui::elements::Icon::new(
galaxyui::elements::Icon::new(
expansion_type.icon().into(),
line_number_config.text_color,
)
@@ -971,7 +971,7 @@ impl<V: EditorView> EditorWrapper<V> {
let container = Container::new(
ConstrainedBox::new(
warpui::elements::Icon::new(gutter_button.icon().into(), icon_color).finish(),
galaxyui::elements::Icon::new(gutter_button.icon().into(), icon_color).finish(),
)
.with_width(icon_size)
.with_height(icon_size)
@@ -1011,7 +1011,7 @@ impl<V: EditorView> EditorWrapper<V> {
});
if enabled {
button = button.with_cursor(warpui::platform::Cursor::PointingHand);
button = button.with_cursor(galaxyui::platform::Cursor::PointingHand);
if let Some(on_click_action) = on_click_action {
let action = on_click_action.clone();