-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimize ProfileSelectWindow #17
Optimize ProfileSelectWindow #17
Conversation
Co-authored-by: jona <[email protected]>
…106/SuperCheatedFrostyToolsuite into 2.0.0_ProfileSelectFix
…106/SuperCheatedFrostyToolsuite into 2.0.0_ProfileSelectFix
…106/SuperCheatedFrostyToolsuite into 2.0.0_ProfileSelectFix
…106/SuperCheatedFrostyToolsuite into 2.0.0_ProfileSelectFix
@@ -31,6 +33,52 @@ public ProfileConfig(string inKey) | |||
Key = inKey; | |||
Path = Config.Get("GamePath", string.Empty, ConfigScope.Game, Key); | |||
Name = ProfilesLibrary.GetDisplayName(Key) ?? Key; | |||
Icon = BitmapAssetValueConverter.Instance.Convert($"avares://FrostyEditor/Assets/Profiles/Icons/{ProfilesLibrary.GetInternalName(inKey)}.png"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the icon/banner should probably be in a folder which the user can add, since profiles should be added through the user
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
user should can add banner manually?
can u see this? I think it would be better to make the banner part of the theme
Foreground="{DynamicResource DockThemeForegroundBrush}" | ||
Background="{x:Null}" | ||
BorderThickness="1" BorderBrush="{DynamicResource DockThemeBorderLowBrush}" | ||
ExtendClientAreaToDecorationsHint="True" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this does not work on linux, so i think it would be best to just have the title in the window decorations
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just have the title in the window decorations
will cause this in win11, i will try make auto detect windows and custom titlebar in ThemeSystem
btw the AcrylicBorder in MainWindow looks so weird (i didnt change that) And im working on ThemeSystem first |
old pr