-
Notifications
You must be signed in to change notification settings - Fork 186
418 gui design highlighting unreadable color #424
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
Hirogen
merged 31 commits into
Development
from
418-gui-design---highlighting-unreadable-color
Jun 26, 2025
Merged
Changes from 9 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
d09c30d
Merge branch 'Development' into 418-gui-design---highlighting-unreada…
Hirogen dcdd47d
removing DarkMode in preparation for .net 10
Hirogen d9512cb
more colors
Hirogen 6b3d97d
removing more darkmode stuff
Hirogen a00f7ef
completed removing dark mode
Hirogen f768551
optimizations
Hirogen b9684ac
optimization
Hirogen fadcd9a
made splitter moveable, for higher dpi or different Screens
Hirogen e7e1bef
update after review
Hirogen 236411b
Merge branch 'Development' into 418-gui-design---highlighting-unreada…
Hirogen 6b0b6fe
review comments
Hirogen fdf2260
review comments
Hirogen 41832fc
review comments
Hirogen bf91114
small change
Hirogen 2fd45c9
review comments
Hirogen 0bbe6cd
more review comments
Hirogen f096885
Update test_dotnet.yml
Hirogen f700b55
recombined all the forms, so they can be refactored better, and there…
Hirogen ff7b6fe
Merge branch 'Development' into 418-gui-design---highlighting-unreada…
Hirogen 6aacad7
replace resources
Hirogen 8ec80fb
review comments
Hirogen 669b784
update usedComponents
Hirogen 9206ec1
Merge branch 'Development' into 418-gui-design---highlighting-unreada…
Hirogen 2e12d7e
build not working
Hirogen 0a612d7
Merge branch 'Development' into 418-gui-design---highlighting-unreada…
Hirogen 2d3c361
optimizations for debugging
Hirogen e10bb6e
small optimizations
Hirogen 6b076cb
finally fixing the wrong text color problem
Hirogen f9b7b42
wrong HighlightDialog dialog
Hirogen 32eeda0
removed no longer needed debug code
Hirogen 5c05a50
review comments
Hirogen 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 was deleted.
Oops, something went wrong.
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 |
|---|---|---|
| @@ -1,12 +1,21 @@ | ||
| using LogExpert.Core.Entities; | ||
| using LogExpert.Core.Entities; | ||
|
|
||
| namespace LogExpert.Core.EventArguments; | ||
|
|
||
| public class BookmarkEventArgs(Bookmark bookmark) : System.EventArgs | ||
| public class BookmarkEventArgs : EventArgs | ||
| { | ||
| public BookmarkEventArgs (Bookmark bookmark) | ||
| { | ||
| Bookmark = bookmark; | ||
| } | ||
|
|
||
| public BookmarkEventArgs () { } | ||
|
|
||
| public static new readonly BookmarkEventArgs Empty = new(); | ||
|
Hirogen marked this conversation as resolved.
Outdated
|
||
|
|
||
| #region Properties | ||
|
|
||
| public Bookmark Bookmark { get; } = bookmark; | ||
| public Bookmark Bookmark { get; } | ||
|
|
||
| #endregion | ||
| } | ||
|
Hirogen marked this conversation as resolved.
Outdated
|
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 |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| using LogExpert.Core.Entities; | ||
| using LogExpert.Core.Entities; | ||
| using LogExpert.Core.EventArguments; | ||
|
|
||
| namespace LogExpert.Core.EventHandlers; | ||
|
|
||
| public delegate void ConfigChangedEventHandler(object sender, ConfigChangedEventArgs e); | ||
| public delegate void FileSizeChangedEventHandler(object sender, LogEventArgs e); | ||
| public delegate void ConfigChangedEventHandler (object sender, ConfigChangedEventArgs e); | ||
| public delegate void FileSizeChangedEventHandler (object sender, LogEventArgs e); |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.