浏览代码

Fix fullscreen mode

master
Bert 13 年前
父节点
当前提交
0b91328181
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      Makefile
  2. +1
    -1
      window.c

+ 1
- 1
Makefile 查看文件

@@ -1,6 +1,6 @@
all: sxiv

VERSION=0.8
VERSION=git-20110414

CC?=gcc
PREFIX?=/usr/local


+ 1
- 1
window.c 查看文件

@@ -247,7 +247,7 @@ void win_toggle_fullscreen(win_t *win) {
cm->data.l[3] = 0;

XSendEvent(win->env.dpy, DefaultRootWindow(win->env.dpy), False,
SubstructureNotifyMask, &ev);
SubstructureNotifyMask | SubstructureRedirectMask, &ev);
}

void win_clear(win_t *win) {


正在加载...
取消
保存