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
+7 -7
View File
@@ -5,11 +5,11 @@ use std::{cmp::Ordering, sync::Arc};
use itertools::Itertools;
use pathfinder_geometry::vector::vec2f;
use string_offset::CharOffset;
use warp_core::ui::theme::Fill;
use warp_editor::editor::NavigationKey;
use warpui::elements::Clipped;
use warpui::FocusContext;
use warpui::{
use galaxy_core::ui::theme::Fill;
use galaxy_editor::editor::NavigationKey;
use galaxyui::elements::Clipped;
use galaxyui::FocusContext;
use galaxyui::{
clipboard::ClipboardContent,
elements::{
Align, Border, ChildAnchor, ClippedScrollStateHandle, ClippedScrollable, ConstrainedBox,
@@ -1412,7 +1412,7 @@ impl WorkflowModal {
let workflow_icon = Container::new(
ConstrainedBox::new(
Icon::from(DriveObjectType::Workflow)
.to_warpui_icon(
.to_galaxyui_icon(
warp_drive_icon_color(appearance, DriveObjectType::Workflow).into(),
)
.finish(),
@@ -1710,7 +1710,7 @@ impl WorkflowModal {
let text_and_icon = TextAndIcon::new(
TextAndIconAlignment::TextFirst,
label.to_string(),
icon.to_warpui_icon(appearance.theme().active_ui_text_color()),
icon.to_galaxyui_icon(appearance.theme().active_ui_text_color()),
MainAxisSize::Min,
MainAxisAlignment::Center,
vec2f(16., 16.),