diff --git a/AppResource.Designer.cs b/AppResource.Designer.cs
index f7bb2f8..502b3a3 100644
--- a/AppResource.Designer.cs
+++ b/AppResource.Designer.cs
@@ -128,16 +128,6 @@ namespace BookmarkManager {
             }
         }
         
-        /// 
-        ///   Looks up a localized resource of type System.Drawing.Bitmap.
-        /// 
-        internal static System.Drawing.Bitmap loading_block {
-            get {
-                object obj = ResourceManager.GetObject("loading_block", resourceCulture);
-                return ((System.Drawing.Bitmap)(obj));
-            }
-        }
-        
         /// 
         ///   Looks up a localized string similar to https://www.hiimray.co.uk/software-bookmark-manager.
         /// 
diff --git a/AppResource.resx b/AppResource.resx
index 4562d76..97991b2 100644
--- a/AppResource.resx
+++ b/AppResource.resx
@@ -139,9 +139,6 @@
   
     Resources\hexagon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
   
-  
-    Resources\loading-block.gif;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-  
   
     https://www.hiimray.co.uk/software-bookmark-manager
   
diff --git a/BookmarkForm.cs b/BookmarkForm.cs
index e257290..0ccd4d1 100644
--- a/BookmarkForm.cs
+++ b/BookmarkForm.cs
@@ -344,7 +344,7 @@ namespace FizzyLauncher
             {
                 isBusy = value;
 
-                ThreadControl.SetValue(pictureBox2, (isBusy ? AppResource.loading_block : null));
+                ThreadControl.SetValue(pictureBox2, (isBusy ? RyzStudio.UIResource.loading_block : null));
 
                 ThreadControl.SetEnable(textBox1, !isBusy);
                 ThreadControl.SetEnable(textBox2, !isBusy);
diff --git a/UpdateIconsForm.cs b/UpdateIconsForm.cs
index 7265014..860c8c2 100644
--- a/UpdateIconsForm.cs
+++ b/UpdateIconsForm.cs
@@ -272,7 +272,7 @@ namespace FizzyLauncher
             {
                 isBusy = value;
 
-                ThreadControl.SetValue(pictureBox2, (isBusy ? AppResource.loading_block : null));
+                ThreadControl.SetValue(pictureBox2, (isBusy ? RyzStudio.UIResource.loading_block : null));
 
                 ThreadControl.SetEnable(pickerBox1, !isBusy);
                 button2.LabelText = (isBusy ? "&Stop" : "&Run");