Skip to content

Commit

Permalink
Merge pull request #2205 from AlanDrake/ags4-ux-part2
Browse files Browse the repository at this point in the history
AGS4: Some UX improvements
  • Loading branch information
ivan-mogilko authored Nov 12, 2023
2 parents 8da3709 + a93401f commit 28bcc6c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
6 changes: 5 additions & 1 deletion Editor/AGS.Editor/ColorThemes/ColorThemeJson.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ public override ToolStripRenderer GetMainMenuRenderer(string id)

public override ToolStripRenderer GetToolStripRenderer(string id)
{
return DoTransform(id, t => new ToolStripProfessionalRenderer(new ToolStripColorTable(this, t.Path)));
return DoTransform(id, t => {
var tspr = new ToolStripProfessionalRenderer(new ToolStripColorTable(this, t.Path));
tspr.RoundedEdges = false;
return tspr;
});
}

public override ComboBox GetComboBox(string id, ComboBox original)
Expand Down
1 change: 1 addition & 0 deletions Editor/AGS.Editor/GUI/LogPanel.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Editor/AGS.Editor/Panes/WelcomePane.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Editor/AGS.Editor/Panes/WelcomePane.resx
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,15 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="lblUpgradingInfo3.Text" xml:space="preserve">
<value>Some of the new features in AGS 3.6 include:
* Engine backend now uses SDL2
* Multiplatform support extended
* Unicode support
* New game package options
* Multiple speech voxes
* New sprite compression options
* Room Overlays and new Overlay properties
* Room objects limit increased
<value>Some of the new features in AGS 4.0 include:
* Open Room format
* New script compiler with new syntax features
* Managed pointers inside managed structs
* Blend modes
* Rotation property
* PO format translations
* FLAC support
* Joystick and Gamepad input
* And loads more!
</value>
</data>
Expand Down

0 comments on commit 28bcc6c

Please sign in to comment.