-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug fixes; explicitly set dpi awareness.
- Loading branch information
Showing
21 changed files
with
183 additions
and
77 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,9 @@ | ||
# Colora Changelog | ||
|
||
#### v.0.1.1 (2018-07) | ||
- **Fixed:** High-DPI support ([#2](https://github.com/bluegrams/Colora/issues/2)). | ||
- **Fixed:** Bug with 'Pin on Top'. | ||
- **Fixed:** Little UI issues. | ||
|
||
### v.0.1 (2018-03) | ||
- First released version. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System; | ||
using System.Windows.Input; | ||
|
||
namespace Colora | ||
{ | ||
static class CustomCommands | ||
{ | ||
public static readonly RoutedCommand ColorDialog = new RoutedCommand("ColorDialog", | ||
typeof(CustomCommands), | ||
new InputGestureCollection() { new KeyGesture(Key.D, ModifierKeys.Control) }); | ||
|
||
public static readonly RoutedCommand MinimalSize = new RoutedCommand("MinimalSize", | ||
typeof(CustomCommands), | ||
new InputGestureCollection() { new KeyGesture(Key.M, ModifierKeys.Control) }); | ||
|
||
public static readonly RoutedCommand PaletteEditor = new RoutedCommand("PaletteEditor", | ||
typeof(CustomCommands), | ||
new InputGestureCollection() { new KeyGesture(Key.P, ModifierKeys.Control) }); | ||
|
||
public static readonly RoutedCommand TopMost = new RoutedCommand("TopMost", | ||
typeof(CustomCommands), | ||
new InputGestureCollection() { new KeyGesture(Key.T, ModifierKeys.Control) }); | ||
} | ||
} |
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
Oops, something went wrong.