summary refs log tree commit diff
path: root/bin/gfx
diff options
context:
space:
mode:
Diffstat (limited to 'bin/gfx')
-rw-r--r--bin/gfx/cocoa.m2
-rw-r--r--bin/gfx/x11.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/gfx/cocoa.m b/bin/gfx/cocoa.m
index 4837a386..54f39e62 100644
--- a/bin/gfx/cocoa.m
+++ b/bin/gfx/cocoa.m
@@ -95,8 +95,8 @@
         if (!input(in)) {
             [NSApp terminate: self];
         }
-        [self setWindowTitle];
         [self draw];
+        [self setWindowTitle];
     }
 }
 @end
diff --git a/bin/gfx/x11.c b/bin/gfx/x11.c
index 108d6459..c1e6babd 100644
--- a/bin/gfx/x11.c
+++ b/bin/gfx/x11.c
@@ -104,8 +104,8 @@ int main(int argc, char *argv[]) {
                 KeySym sym = XLookupKeysym(&key, key.state & ShiftMask);
                 if (sym > 0x80) break;
                 if (!input(sym)) return EX_OK;
-                XStoreName(display, window, status());
                 drawWindow();
+                XStoreName(display, window, status());
             } break;
 
             case ConfigureNotify: {