Compare commits
2 Commits
view/targe
...
view/capac
| Author | SHA1 | Date | |
|---|---|---|---|
| c38e948c8a | |||
| 0efa9dd4b1 |
@@ -80,11 +80,11 @@
|
||||
"EnablePerClientThumbnailLayouts": false,
|
||||
"HideThumbnailsOnLostFocus": false,
|
||||
"HideThumbnailsDelay": 2,
|
||||
"ThumbnailSize": "451, 238",
|
||||
"ThumbnailSize": "429, 140",
|
||||
"ThumbnailMaximumSize": "960, 540",
|
||||
"ThumbnailMinimumSize": "192, 108",
|
||||
"EnableThumbnailSnap": true,
|
||||
"ThumbnailSnapRange": 150,
|
||||
"ThumbnailSnapRange": 0,
|
||||
"EnableThumbnailZoom": false,
|
||||
"ThumbnailZoomFactor": 2,
|
||||
"ThumbnailZoomAnchor": 0,
|
||||
@@ -93,14 +93,14 @@
|
||||
"ShowThumbnailFrames": false,
|
||||
"LockThumbnailLocation": false,
|
||||
"ThumbnailSnapToGrid": true,
|
||||
"ThumbnailSnapToGridSizeX": 112,
|
||||
"ThumbnailSnapToGridSizeY": 59,
|
||||
"ThumbnailSnapToGridSizeX": 107,
|
||||
"ThumbnailSnapToGridSizeY": 35,
|
||||
"EnableActiveClientHighlight": true,
|
||||
"ActiveClientHighlightColor": "GreenYellow",
|
||||
"OverlayLabelColor": "Orange",
|
||||
"OverlayLabelSize": 10,
|
||||
"EnableThumbnailRegionSnipping": true,
|
||||
"DefaultThumbnailRegion": "1384, 188, 451, 238",
|
||||
"DefaultThumbnailRegion": "1205, 1269, 429, 140",
|
||||
"CurrentProfile": "Default",
|
||||
"AvailableProfiles": [
|
||||
"Default"
|
||||
@@ -110,15 +110,15 @@
|
||||
"LoginThumbnailLocation": "5, 5",
|
||||
"ToggleTrackingHotkey": "Alt+F16",
|
||||
"ToggleSingleProcessHotkey": "Control+F16",
|
||||
"ToggleAllThumbnailsHotkey": "Shift+Alt+Oem3",
|
||||
"ToggleAllThumbnailsHotkey": "Alt+Oem3",
|
||||
"ThumbnailsManuallyHidden": false,
|
||||
"PerClientLayout": {},
|
||||
"FlatLayout": {
|
||||
"EVE - Quartio": "0, 1239",
|
||||
"EVE - Tertiale": "0, 1003",
|
||||
"EVE - Secundamen": "0, 767",
|
||||
"EVE - Primorium": "448, 1121",
|
||||
"EVE - PhatPhuckDave": "448, 885"
|
||||
"EVE - Quartio": "0, 1295",
|
||||
"EVE - Tertiale": "0, 1155",
|
||||
"EVE - Secundamen": "0, 1015",
|
||||
"EVE - Primorium": "0, 875",
|
||||
"EVE - PhatPhuckDave": "0, 735"
|
||||
},
|
||||
"ClientLayout": {},
|
||||
"ClientHotkey": {},
|
||||
|
||||
@@ -177,6 +177,8 @@ namespace EveOPreview.Services {
|
||||
this._toggleAllThumbnailsHotkey = new HotkeyHandler(mainHandle, toggleAllThumbnailsKey);
|
||||
this._toggleAllThumbnailsHotkey.Pressed += (object s, HandledEventArgs e) => {
|
||||
this._configuration.ThumbnailsManuallyHidden = !this._configuration.ThumbnailsManuallyHidden;
|
||||
this._hideThumbnailsDelay = 0;
|
||||
this.RefreshThumbnails();
|
||||
System.Diagnostics.Debug.WriteLine(
|
||||
$"Toggled all thumbnails: {(this._configuration.ThumbnailsManuallyHidden ? "Hidden" : "Visible")}");
|
||||
e.Handled = true;
|
||||
@@ -256,6 +258,8 @@ namespace EveOPreview.Services {
|
||||
this._toggleAllThumbnailsHotkey = new HotkeyHandler(mainHandle, toggleAllThumbnailsKey);
|
||||
this._toggleAllThumbnailsHotkey.Pressed += (object s, HandledEventArgs e) => {
|
||||
this._configuration.ThumbnailsManuallyHidden = !this._configuration.ThumbnailsManuallyHidden;
|
||||
this._hideThumbnailsDelay = 0;
|
||||
this.RefreshThumbnails();
|
||||
System.Diagnostics.Debug.WriteLine(
|
||||
$"Toggled all thumbnails: {(this._configuration.ThumbnailsManuallyHidden ? "Hidden" : "Visible")}");
|
||||
e.Handled = true;
|
||||
|
||||
Reference in New Issue
Block a user