mirror of
https://github.com/greenshot/greenshot
synced 2025-08-19 21:13:23 -07:00
Code quality changes [skip ci]
This commit is contained in:
parent
61cfe004c5
commit
798ca503a5
108 changed files with 1981 additions and 2258 deletions
|
@ -35,16 +35,16 @@ namespace Greenshot.Controls {
|
|||
set;
|
||||
}
|
||||
|
||||
private Color selectedColor = Color.Transparent;
|
||||
private Color _selectedColor = Color.Transparent;
|
||||
|
||||
public ToolStripColorButton() {
|
||||
Click+= ColorButtonClick;
|
||||
}
|
||||
|
||||
public Color SelectedColor {
|
||||
get {return selectedColor;}
|
||||
get {return _selectedColor;}
|
||||
set {
|
||||
selectedColor = value;
|
||||
_selectedColor = value;
|
||||
|
||||
Brush brush;
|
||||
if(value != Color.Transparent) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue