moving converters, fixing spacing issues

This commit is contained in:
Clint Rutkas
2019-12-12 13:51:58 -08:00
parent a187456ac3
commit 24664cc859
14 changed files with 93 additions and 85 deletions

View File

@@ -155,7 +155,6 @@ namespace FancyZonesEditor.Models
data[i++] = (byte)(Id % 256);
// End common
data[i++] = (byte)(_referenceWidth / 256);
data[i++] = (byte)(_referenceWidth % 256);
data[i++] = (byte)(_referenceHeight / 256);

View File

@@ -214,7 +214,6 @@ namespace FancyZonesEditor.Models
data[i++] = (byte)(Id % 256);
// End common
data[i++] = (byte)Rows;
data[i++] = (byte)Columns;

View File

@@ -276,7 +276,6 @@ namespace FancyZonesEditor
{
index--;
}
}
}
@@ -313,7 +312,6 @@ namespace FancyZonesEditor
// 4 = X_Y_Width_Height in a dpi-scaled-but-unaware coords (where EditorOverlay shows up)
// 5 = resolution key (passed back to engine to persist data)
// 6 = monitor DPI (float)
UniqueKey = args[1];
_uniqueRegistryPath += "\\" + UniqueKey;
@@ -347,7 +345,6 @@ namespace FancyZonesEditor
}
}
public IList<LayoutModel> DefaultModels
{
get { return _defaultModels; }