summaryrefslogtreecommitdiff
path: root/src/window.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2023-08-27 07:23:39 +1000
committerMaxime Coste <mawww@kakoune.org>2023-08-27 08:03:42 +1000
commitfe93a9df37bdc28ff6580cf9ece8d18bbe2663cf (patch)
tree36e879ca26cc4f55f73695230e9d43268aafe298 /src/window.hh
parent6f9f32b4bb7603c308a3e245fef10ad48bf20719 (diff)
Remove Window::force_redraw()
This was mostly redundant with Client::force_redraw.
Diffstat (limited to 'src/window.hh')
-rw-r--r--src/window.hh1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/window.hh b/src/window.hh
index e6f27369..2b96cb70 100644
--- a/src/window.hh
+++ b/src/window.hh
@@ -43,7 +43,6 @@ public:
Buffer& buffer() const { return *m_buffer; }
bool needs_redraw(const Context& context) const;
- void force_redraw() { m_last_setup = Setup{}; }
void set_client(Client* client) { m_client = client; }