MainMemoryBlockExtension now throttles firing of content change events
[Mograsim.git] / plugins / net.mograsim.preferences / src / net / mograsim / preferences / DefaultPreferences.java
index b261003..0f563dc 100644 (file)
@@ -23,6 +23,18 @@ public class DefaultPreferences extends Preferences
        {
                switch (name)
                {
+               case "net.mograsim.logic.model.debug.hlsshelldepth":
+                       return 0;
+               case "net.mograsim.logic.model.button.action":
+                       return 3;
+               case "net.mograsim.logic.model.button.drag":
+                       return 1;
+               case "net.mograsim.logic.model.button.zoom":
+                       return 2;
+               case "net.mograsim.plugin.core.simspeedprecision":
+                       return 6;
+               case "net.mograsim.plugin.core.maxmemchangeinterval":
+                       return 1000;
                default:
                        throw new IllegalArgumentException("Unknown int preference name: " + name);
                }