mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-05-30 00:21:55 +00:00
Added "File -> Open Map in current WAD" command (default shortcut is Ctrl-Shift-O).
Fixed some errors in non-UDMF <-> UDMF map conversion. Updated ISS setup script (not tested). Removed some unused variables.
This commit is contained in:
parent
bafb8ed511
commit
e5a9bac2ad
15 changed files with 223 additions and 142 deletions
|
@ -86,9 +86,11 @@ namespace CodeImp.DoomBuilder.Controls
|
|||
public DockersControl()
|
||||
{
|
||||
InitializeComponent();
|
||||
expandedwidth = (int)((float)this.Width * (this.CurrentAutoScaleDimensions.Width / this.AutoScaleDimensions.Width));
|
||||
expandedwidth = (int)(this.Width * (this.CurrentAutoScaleDimensions.Width / this.AutoScaleDimensions.Width));
|
||||
tabs.TabsOffsetTop = buttonTogglePinning.Bottom + 2; //mxd
|
||||
buttonTogglePinning.Image = General.Settings.CollapseDockers ? CodeImp.DoomBuilder.Properties.Resources.Unpin : CodeImp.DoomBuilder.Properties.Resources.Pin; //mxd
|
||||
|
||||
if(General.Settings != null)
|
||||
buttonTogglePinning.Image = General.Settings.CollapseDockers ? CodeImp.DoomBuilder.Properties.Resources.Unpin : CodeImp.DoomBuilder.Properties.Resources.Pin; //mxd
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue