commit 65c29dec7860103287993ba7c93a4aec374d2aec
Author: LeszekKoltunski <leszek@koltunski.pl>
Date:   Thu May 29 00:18:44 2025 +0200

    fix for the issue that VertexEffects couldn't be pre-applied to meshes.

diff --git a/src/main/java/org/distorted/bandaged/BandagedActivity.java b/src/main/java/org/distorted/bandaged/BandagedActivity.java
index 11c2911d..36e8d507 100644
--- a/src/main/java/org/distorted/bandaged/BandagedActivity.java
+++ b/src/main/java/org/distorted/bandaged/BandagedActivity.java
@@ -252,7 +252,7 @@ public class BandagedActivity extends BaseActivity
           {
           SharedPreferences.Editor editor = mPreferences.edit();
           OSInterface os = new OSInterface(this,null);
-          os.setEditor(editor);
+        //  os.setEditor(editor);
           object.removePreferences(os);
           editor.apply();
           }
diff --git a/src/main/java/org/distorted/config/ConfigActivity.java b/src/main/java/org/distorted/config/ConfigActivity.java
index 19190dd1..5e1e6ab2 100644
--- a/src/main/java/org/distorted/config/ConfigActivity.java
+++ b/src/main/java/org/distorted/config/ConfigActivity.java
@@ -94,7 +94,7 @@ public class ConfigActivity extends BaseActivity
         }
 
       OSInterface os = view.getInterface();
-      os.setPreferences(mPreferences);
+     // os.setPreferences(mPreferences);
       restorePreferences();
 
       if( mScreen==null ) mScreen = new ConfigScreen();
@@ -157,7 +157,7 @@ public class ConfigActivity extends BaseActivity
 
       ConfigSurfaceView view = findViewById(R.id.configSurfaceView);
       OSInterface os = view.getInterface();
-      os.setEditor(editor);
+    //  os.setEditor(editor);
       view.getObjectControl().savePreferences();
 
       editor.putBoolean("configDisplayDialog", mDisplayMessageDialog );
diff --git a/src/main/java/org/distorted/play/PlayActivity.java b/src/main/java/org/distorted/play/PlayActivity.java
index 465b8a64..6e00f251 100644
--- a/src/main/java/org/distorted/play/PlayActivity.java
+++ b/src/main/java/org/distorted/play/PlayActivity.java
@@ -196,7 +196,7 @@ public class PlayActivity extends BaseActivity implements DialogScores.ScoresInv
 
     PlayView view = findViewById(R.id.playView);
     OSInterface os = view.getInterface();
-    os.setEditor(editor);
+   // os.setEditor(editor);
     view.getObjectControl().savePreferences();
 
     RubikScores scores = RubikScores.getInstance();
@@ -218,7 +218,7 @@ public class PlayActivity extends BaseActivity implements DialogScores.ScoresInv
 
     PlayView view = findViewById(R.id.playView);
     OSInterface os = view.getInterface();
-    os.setPreferences(mPreferences);
+   // os.setPreferences(mPreferences);
     view.getObjectControl().restorePreferences();
     }
 
