-
-
Notifications
You must be signed in to change notification settings - Fork 457
Resizable Window + Customize #2699
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
Merged
onesounds
merged 30 commits into
Flow-Launcher:dev
from
onesounds:240514ResizableWindow
May 28, 2024
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
2e3b61c
Change Window to Resizable
onesounds a628bc5
- Add Theme Editor
onesounds 3659399
Remove Hand Cursor Style
onesounds 68f34fa
Merge Dev
onesounds 8d566d0
Merge Dev
onesounds d31c9a0
Adjust Toggle Style
onesounds 37ab4aa
Change Edit Button to Icon
onesounds d7272d9
Fix Scroll for bottom margin in theme
onesounds 5e5c9ae
Add Strings
onesounds 4acbb7a
Removed MaxResult/Width item in settings
onesounds a88f165
Adjust Quick Resize Logic
onesounds 7b106c5
Fix Sidebar Color
onesounds acde180
Merge branch 'dev' into 240514ResizableWindow
onesounds cedf0c6
- Add Reset Button Function
onesounds 5a0f4ac
Adjust Default Value
onesounds de94f39
Fix window height reset issue
VictoriousRaptor 0a52d71
Fix binding problem
VictoriousRaptor 4fd05f5
- RollBack reset logic and Adjust naming
onesounds 188c409
Adjust Reset Logic
onesounds ea4578f
Add Keep Height (old behaiver) function
onesounds 3f710f2
Adjust Layout for Long Label (language)
onesounds ba3d262
MaxResult Item to Theme from General
onesounds a6de6c7
Adjust Width Logic
onesounds 94df8d9
Merge branch 'dev' into 240514ResizableWindow
onesounds 83bc664
Fix memory leak in ResultViewModel
Yusyuriv 2893487
Appearance pane in settings: fix custom animation length TextBox not …
Yusyuriv 8c3ef71
Resizeable window: fixes after review
Yusyuriv 990f932
Resizeable window PR: remove GridSplitter
Yusyuriv 218685d
Resizeable window PR: en.xaml correction
Yusyuriv e39a7ed
Merge branch 'dev' into 240514ResizableWindow
onesounds File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -56,6 +56,13 @@ public string Theme | |
| } | ||
| } | ||
| public bool UseDropShadowEffect { get; set; } = false; | ||
|
|
||
| /* Appearance Settings. It should be separated from the setting later.*/ | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Settings for Customize |
||
| public double WindowHeightSize { get; set; } = 42; | ||
| public double ItemHeightSize { get; set; } = 58; | ||
| public double QueryBoxFontSize { get; set; } = 20; | ||
| public double ResultItemFontSize { get; set; } = 16; | ||
| public double ResultSubItemFontSize { get; set; } = 13; | ||
| public string QueryBoxFont { get; set; } = FontFamily.GenericSansSerif.Name; | ||
| public string QueryBoxFontStyle { get; set; } | ||
| public string QueryBoxFontWeight { get; set; } | ||
|
|
@@ -64,6 +71,10 @@ public string Theme | |
| public string ResultFontStyle { get; set; } | ||
| public string ResultFontWeight { get; set; } | ||
| public string ResultFontStretch { get; set; } | ||
| public string ResultSubFont { get; set; } = FontFamily.GenericSansSerif.Name; | ||
| public string ResultSubFontStyle { get; set; } | ||
| public string ResultSubFontWeight { get; set; } | ||
| public string ResultSubFontStretch { get; set; } | ||
| public bool UseGlyphIcons { get; set; } = true; | ||
| public bool UseAnimation { get; set; } = true; | ||
| public bool UseSound { get; set; } = true; | ||
|
|
@@ -205,6 +216,7 @@ public SearchPrecisionScore QuerySearchPrecision | |
| /// </summary> | ||
| public double CustomWindowTop { get; set; } = 0; | ||
|
|
||
| public bool KeepMaxResults { get; set; } = false; | ||
| public int MaxResultsToShow { get; set; } = 5; | ||
| public int ActivateTimes { get; set; } | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Separating / And adding Subtitle Styles.