This commit is contained in:
codeimp 2007-06-26 09:11:52 +00:00
parent 18127a6ee6
commit 2cce129f70
2 changed files with 5 additions and 4 deletions

View file

@ -3,21 +3,21 @@ shortcuts
{ {
scrolleast = 39; scrolleast = 39;
scrollsouth = 40; scrollsouth = 40;
zoomout = 65531;
scrollnorth = 38; scrollnorth = 38;
openmap = 131151;
scrollwest = 37; scrollwest = 37;
newmap = 131150; newmap = 131150;
zoomin = 65530; zoomin = 65530;
zoomout = 65531; openmap = 131151;
} }
mainwindow mainwindow
{ {
positionx = 124; positionx = 124;
sizewidth = 739;
windowstate = 2;
sizeheight = 572; sizeheight = 572;
positiony = 35; positiony = 35;
windowstate = 2;
sizewidth = 739;
} }

View file

@ -28,6 +28,7 @@ using System.Windows.Forms;
// This Form is a workaround for the slow drawing of the .NET Forms. // This Form is a workaround for the slow drawing of the .NET Forms.
// By showing the Form at 0% Opacity it allows the .NET framework to complete // By showing the Form at 0% Opacity it allows the .NET framework to complete
// drawing the Form first, then we set it to 100% Opacity to actually show it. // drawing the Form first, then we set it to 100% Opacity to actually show it.
// To use this class properly, set the initial Opacity of your Form to 0.
namespace CodeImp.DoomBuilder.Interface namespace CodeImp.DoomBuilder.Interface
{ {