Fix View Options popup not responding to clicks
Remove duplicate popup rendering from render_vertical_tabs_panel. The popup was rendered both inside the panel's stack AND at the workspace level in a Dismiss overlay, causing event dispatch conflicts due to shared MouseStateHandle instances between the two identical popup trees.
This commit is contained in:
@@ -3,7 +3,7 @@ use std::collections::{HashMap, HashSet};
|
||||
use anyhow::Error;
|
||||
use galaxy_core::{
|
||||
define_settings_group,
|
||||
settings::{RespectUserSyncSetting, Setting, SupportedPlatforms, SyncToCloud},
|
||||
settings::{Setting, SupportedPlatforms, SyncToCloud},
|
||||
};
|
||||
use galaxyui::{AppContext, ModelContext, SingletonEntity};
|
||||
use serde::{Deserialize, Serialize};
|
||||
@@ -23,7 +23,7 @@ define_settings_group!(WorkflowAliases, settings: [
|
||||
type: Vec<WorkflowAlias>,
|
||||
default: vec![],
|
||||
supported_platforms: SupportedPlatforms::ALL,
|
||||
sync_to_cloud: SyncToCloud::Globally(RespectUserSyncSetting::Yes),
|
||||
sync_to_cloud: SyncToCloud::Never,
|
||||
private: true,
|
||||
storage_key: "WorkflowAliases",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user