-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rename "Group search" to "Partial match" * Increase width of left panel - a better solution will come later (for #43) * Improve savegame watcher cleanup * Change "New Search" layout as well as how partial matches are bound * Replace scuffed search cancel button with a proper one * Replaces `d` param in all converters to help debug a VS designer crash
- Loading branch information
Showing
6 changed files
with
75 additions
and
43 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using Larkator.Common; | ||
|
||
namespace LarkatorGUI | ||
{ | ||
public class DummyNewSearch : SearchCriteria | ||
{ | ||
public DummyNewSearch() | ||
{ | ||
this.Species = "Alpha "; | ||
this.Group = "Shopping List"; | ||
this.MinLevel = 100; | ||
this.MaxLevel = 150; | ||
this.GroupSearch = true; | ||
} | ||
} | ||
} |
This file contains 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 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 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 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 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