aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2015-06-23 03:02:19 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2015-06-23 03:02:19 +0200
commit9fd2da5b228f69e7705ce3a4ff45e50f7edaf39b (patch)
tree27cd2899bf29e2f0bf3ac5a2e9122fd953c2ca61
parenteed939f4c87c7016be8c3e913cdb1f620b29256f (diff)
downloadsciteco-9fd2da5b228f69e7705ce3a4ff45e50f7edaf39b.tar.gz
fixed comment in interface-gtk.cpp
-rw-r--r--src/interface-gtk.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/interface-gtk.cpp b/src/interface-gtk.cpp
index ebc7cb1..7f16629 100644
--- a/src/interface-gtk.cpp
+++ b/src/interface-gtk.cpp
@@ -460,10 +460,9 @@ InterfaceGtk::handle_key_press(bool is_shift, bool is_ctl, guint keyval)
ViewGtk *last_view = current_view;
/*
- * Avoid redraws of the current view freezing updates
- * on the view's GDK window.
- * Since we're running in parallel to the main loop
- * this would in frequent redraws.
+ * Avoid redraws of the current view by freezing updates
+ * on the view's GDK window (we're running in parallel
+ * to the main loop so there could be frequent redraws).
* By freezing updates, the behaviour is similar to
* the Curses UI.
*/