mirror of
https://github.com/livingcomputermuseum/Darkstar.git
synced 2026-02-25 16:49:58 +00:00
Added option to stretch the display in fullscreen mode.
This commit is contained in:
@@ -51,6 +51,7 @@ namespace D.UI
|
||||
|
||||
public bool SlowPhosphor;
|
||||
public uint DisplayScale;
|
||||
public bool FullScreenStretch;
|
||||
|
||||
public TODPowerUpSetMode TODSetMode;
|
||||
public DateTime TODDateTime;
|
||||
@@ -86,7 +87,8 @@ namespace D.UI
|
||||
}
|
||||
}
|
||||
|
||||
SlowPhosphorCheckBox.Checked = SlowPhosphor;
|
||||
SlowPhosphorCheckBox.Checked = SlowPhosphor;
|
||||
FullScreenStretchCheckBox.Checked = FullScreenStretch;
|
||||
|
||||
// Time Tab
|
||||
switch (TODSetMode)
|
||||
@@ -223,6 +225,7 @@ namespace D.UI
|
||||
{
|
||||
ThrottleSpeed = ThrottleSpeedCheckBox.Checked;
|
||||
SlowPhosphor = SlowPhosphorCheckBox.Checked;
|
||||
FullScreenStretch = FullScreenStretchCheckBox.Checked;
|
||||
|
||||
HostPacketInterfaceName = ((EthernetInterface)EthernetInterfaceListBox.SelectedItem).Name;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user