aboutsummaryrefslogtreecommitdiffstats
path: root/screen.c
diff options
context:
space:
mode:
authorokan2013-06-17 17:11:10 +0000
committerokan2013-06-17 17:11:10 +0000
commit44880fc9e1b308e5fdd1070fbd2d7fd012b1dc75 (patch)
tree8c660ca028101e2dd039988fef2c9d08764e5f6b /screen.c
parent99bf11e128ef433ba54ef1899d937d2f99f9069b (diff)
downloadcwm-44880fc9e1b308e5fdd1070fbd2d7fd012b1dc75.tar.gz
move Cursors into conf.
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/screen.c b/screen.c
index 864e120..dce4065 100644
--- a/screen.c
+++ b/screen.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: screen.c,v 1.51 2013/05/20 20:21:04 okan Exp $
+ * $OpenBSD: screen.c,v 1.52 2013/06/17 17:11:10 okan Exp $
*/
#include <sys/param.h>
@@ -57,7 +57,7 @@ screen_init(int which)
group_init(sc);
- rootattr.cursor = Cursor_normal;
+ rootattr.cursor = Conf.cursor[CF_NORMAL];
rootattr.event_mask = SubstructureRedirectMask|SubstructureNotifyMask|
PropertyChangeMask|EnterWindowMask|LeaveWindowMask|
ColormapChangeMask|BUTTONMASK;