From 6401f94465174b2da91cb41abf18af416bdb86c9 Mon Sep 17 00:00:00 2001 From: oyvang Date: Tue, 19 May 2015 09:12:38 +0200 Subject: [PATCH] fixed feedback when file is not saved --- juci/window.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/juci/window.cc b/juci/window.cc index bd97d5e..ae62171 100644 --- a/juci/window.cc +++ b/juci/window.cc @@ -218,6 +218,7 @@ bool Window::SaveFile() { notebook_.CurrentPagePath()+"\n"); return true; } + terminal_.PrintMessage("File not saved"); return false; } bool Window::SaveFileAs() { @@ -226,5 +227,6 @@ bool Window::SaveFileAs() { notebook_.CurrentPagePath()+"\n"); return true; } + terminal_.PrintMessage("File not saved"); return false; }