From 895053ec26dfd35febf9d957b222745f096d4df6 Mon Sep 17 00:00:00 2001 From: biwa <6475593+biwa@users.noreply.github.com> Date: Sun, 5 Apr 2020 20:21:35 +0200 Subject: [PATCH] Fixed indentation in ImageBrowserItem --- Source/Core/Controls/ImageBrowserItem.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/Controls/ImageBrowserItem.cs b/Source/Core/Controls/ImageBrowserItem.cs index edf590eca..2d0841baa 100755 --- a/Source/Core/Controls/ImageBrowserItem.cs +++ b/Source/Core/Controls/ImageBrowserItem.cs @@ -37,14 +37,14 @@ namespace CodeImp.DoomBuilder.Controls private static StringBuilder size_builder; private static Font pixelSizeFont; - private static readonly Font messageBoxFont = SystemFonts.MessageBoxFont; - private static readonly int messageBoxFontHeight = messageBoxFont.Height; + private static readonly Font messageBoxFont = SystemFonts.MessageBoxFont; + private static readonly int messageBoxFontHeight = messageBoxFont.Height; #endregion #region ================== Properties - public ImageData Icon { get { return icon; } } + public ImageData Icon { get { return icon; } } public ImageBrowserItemType ItemType { get { return itemtype; } } public virtual bool IsPreviewLoaded { get { return icon.IsPreviewLoaded; } } public bool ShowFullName { set { showfullname = value; } get { return showfullname && (!(icon is PK3FileImage) || !((PK3FileImage)icon).IsBadForLongTextureNames); } } -- GitLab