X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fbackend%2FMultiBackend.java;h=08591ed44b8b90fc651978581ab052d68ce0d63e;hb=e23ea53820244957b17a7000c6d3e1ff586f1ef0;hp=4e82d4ee694e13cbe12275ca1e16f67b42391251;hpb=d36057dfab8def933a64be042b039d76708ac5ba;p=fanfix.git diff --git a/src/jexer/backend/MultiBackend.java b/src/jexer/backend/MultiBackend.java index 4e82d4e..08591ed 100644 --- a/src/jexer/backend/MultiBackend.java +++ b/src/jexer/backend/MultiBackend.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2017 Kevin Lamonte + * Copyright (C) 2019 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -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 ----------------------------------------------------------- // ------------------------------------------------------------------------