From 0b069da513507eb0e5b542f697f17970bb8226b0 Mon Sep 17 00:00:00 2001 From: Dongdong Zhou Date: Wed, 30 Mar 2022 21:05:22 +0100 Subject: [PATCH] check plugins update --- lapce-data/src/data.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lapce-data/src/data.rs b/lapce-data/src/data.rs index 14b4c770..e0d26fb6 100644 --- a/lapce-data/src/data.rs +++ b/lapce-data/src/data.rs @@ -182,6 +182,7 @@ fn same(&self, other: &Self) -> bool { && self.size.same(&other.size) && self.pos.same(&other.pos) && self.keypress.same(&other.keypress) + && self.plugins.same(&other.plugins) } }