Skip to content

Commit

Permalink
v2024.1.7 Schematig talents UI fix (DPI related)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobitege committed Jan 5, 2024
1 parent 95fe596 commit 21cf90e
Show file tree
Hide file tree
Showing 8 changed files with 70 additions and 70 deletions.
6 changes: 2 additions & 4 deletions DU-Industry-Tool/Controls/ButtonRow.Designer.cs

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

9 changes: 1 addition & 8 deletions DU-Industry-Tool/Controls/ButtonRow.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Krypton.Toolkit;

Expand All @@ -29,7 +22,7 @@ private void InitializeButtonRow()
for (int i = minValue; i <= maxValue; i++)
{
var btn = new KryptonButton();
btn.Margin = new System.Windows.Forms.Padding(5);
btn.Margin = new System.Windows.Forms.Padding(2);
btn.Name = "btn"+i;
btn.Text = i.ToString();
btn.Tag = i;
Expand Down
107 changes: 52 additions & 55 deletions DU-Industry-Tool/Forms/SchematicValueForm.Designer.cs

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions DU-Industry-Tool/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2024.1.6.0")]
[assembly: AssemblyFileVersion("2024.1.6.0")]
[assembly: AssemblyVersion("2024.1.7.0")]
[assembly: AssemblyFileVersion("2024.1.7.0")]
2 changes: 1 addition & 1 deletion DU-Industry-Tool/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.1.6
2024.1.7
4 changes: 4 additions & 0 deletions DU-Industry-Tool/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v2024.1.7

- Schematics: UI fixes due to DPI scaling

## v2024.1.6

- Schematics dialog: it is extended to be a calculator: each schematic can have a
Expand Down
4 changes: 4 additions & 0 deletions DU-Industry-Tool/latestchanges.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Latest Changes

## v2024.1.7

- Schematics: UI fixes due to DPI scaling

## v2024.1.6

- Schematics dialog: it is extended to be a calculator: each schematic can have a
Expand Down
4 changes: 4 additions & 0 deletions latestchanges.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Latest Changes

## v2024.1.7

- Schematics: UI fixes due to DPI scaling

## v2024.1.6

- Schematics dialog: it is extended to be a calculator: each schematic can have a
Expand Down

0 comments on commit 21cf90e

Please sign in to comment.