Fix missing corner resize cursors in Kubuntu (oxy-white theme)
Looks like that theme uses different names. Also, add the correspoding horizontal and vertical resize cursors, just for consistency.
This commit is contained in:
committed by
Kristian Høgsberg
parent
d561687ec8
commit
f6128fcd6c
+16
-8
@@ -1094,17 +1094,20 @@ shm_surface_create(struct display *display, struct wl_surface *wl_surface,
|
|||||||
|
|
||||||
static const char *bottom_left_corners[] = {
|
static const char *bottom_left_corners[] = {
|
||||||
"bottom_left_corner",
|
"bottom_left_corner",
|
||||||
"sw-resize"
|
"sw-resize",
|
||||||
|
"size_bdiag"
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *bottom_right_corners[] = {
|
static const char *bottom_right_corners[] = {
|
||||||
"bottom_right_corner",
|
"bottom_right_corner",
|
||||||
"se-resize"
|
"se-resize",
|
||||||
|
"size_fdiag"
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *bottom_sides[] = {
|
static const char *bottom_sides[] = {
|
||||||
"bottom_side",
|
"bottom_side",
|
||||||
"s-resize"
|
"s-resize",
|
||||||
|
"size_ver"
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *grabbings[] = {
|
static const char *grabbings[] = {
|
||||||
@@ -1122,27 +1125,32 @@ static const char *left_ptrs[] = {
|
|||||||
|
|
||||||
static const char *left_sides[] = {
|
static const char *left_sides[] = {
|
||||||
"left_side",
|
"left_side",
|
||||||
"w-resize"
|
"w-resize",
|
||||||
|
"size_hor"
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *right_sides[] = {
|
static const char *right_sides[] = {
|
||||||
"right_side",
|
"right_side",
|
||||||
"e-resize"
|
"e-resize",
|
||||||
|
"size_hor"
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *top_left_corners[] = {
|
static const char *top_left_corners[] = {
|
||||||
"top_left_corner",
|
"top_left_corner",
|
||||||
"nw-resize"
|
"nw-resize",
|
||||||
|
"size_fdiag"
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *top_right_corners[] = {
|
static const char *top_right_corners[] = {
|
||||||
"top_right_corner",
|
"top_right_corner",
|
||||||
"ne-resize"
|
"ne-resize",
|
||||||
|
"size_bdiag"
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *top_sides[] = {
|
static const char *top_sides[] = {
|
||||||
"top_side",
|
"top_side",
|
||||||
"n-resize"
|
"n-resize",
|
||||||
|
"size_ver"
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char *xterms[] = {
|
static const char *xterms[] = {
|
||||||
|
|||||||
Reference in New Issue
Block a user