mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-06-02 23:34:13 -05:00
Invert Unicode display
use advanced chars if set, else use default form font Closes #586 probably going to get a followup issue from someone else 😄
This commit is contained in:
parent
a56a3c0cdb
commit
03736dc3f3
|
|
@ -2001,7 +2001,7 @@ private void updateIVs(object sender, EventArgs e)
|
|||
changingFields = false;
|
||||
|
||||
// Potential Reading
|
||||
L_Potential.Text = (!unicode
|
||||
L_Potential.Text = (unicode
|
||||
? new[] {"★☆☆☆", "★★☆☆", "★★★☆", "★★★★"}
|
||||
: new[] {"+", "++", "+++", "++++"}
|
||||
)[pkm.PotentialRating];
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ public QR(Image qr, Image icon, string line1, string line2, string line3, string
|
|||
|
||||
private void RefreshImage()
|
||||
{
|
||||
Font font = Main.unicode ? FontLabel.Font : PKX.getPKXFont((float)8.25);
|
||||
Font font = !Main.unicode ? FontLabel.Font : PKX.getPKXFont((float)8.25);
|
||||
Image preview = new Bitmap(45, 45);
|
||||
using (Graphics gfx = Graphics.FromImage(preview))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ public partial class SAV_Trainer : Form
|
|||
public SAV_Trainer()
|
||||
{
|
||||
InitializeComponent();
|
||||
if (!Main.unicode)
|
||||
if (Main.unicode)
|
||||
try { TB_OTName.Font = PKX.getPKXFont(11); }
|
||||
catch (Exception e) { Util.Alert("Font loading failed...", e.ToString()); }
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ public SAV_Trainer7()
|
|||
{
|
||||
Loading = true;
|
||||
InitializeComponent();
|
||||
if (!Main.unicode)
|
||||
if (Main.unicode)
|
||||
try { TB_OTName.Font = PKX.getPKXFont(11); }
|
||||
catch (Exception e) { Util.Alert("Font loading failed...", e.ToString()); }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user