misc fixes
[fanfix.git] / src / jexer / backend / MultiBackend.java
index 5e4d3ca11224a274bdcb33a6fd5d3c338bf36ef4..08591ed44b8b90fc651978581ab052d68ce0d63e 100644 (file)
@@ -162,6 +162,15 @@ public class MultiBackend implements Backend {
         }
     }
 
+    /**
+     * Reload backend options from System properties.
+     */
+    public void reloadOptions() {
+        for (Backend backend: backends) {
+            backend.reloadOptions();
+        }
+    }
+
     // ------------------------------------------------------------------------
     // MultiBackend -----------------------------------------------------------
     // ------------------------------------------------------------------------