summaryrefslogtreecommitdiffstats
path: root/src/state.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/state.rs')
-rw-r--r--src/state.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/state.rs b/src/state.rs
index 081d00d2..e5a40b15 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -104,7 +104,6 @@ pub struct Context {
pub accounts: IndexMap<AccountHash, Account>,
pub settings: Settings,
- pub runtime_settings: Settings,
/// Areas of the screen that must be redrawn in the next render
pub dirty_areas: VecDeque<Area>,
@@ -342,8 +341,7 @@ impl State {
display_messages_area: ((0, 0), (0, 0)),
context: Context {
accounts,
- settings: settings.clone(),
- runtime_settings: settings,
+ settings: settings,
dirty_areas: VecDeque::with_capacity(5),
replies: VecDeque::with_capacity(5),
temp_files: Vec::new(),