🔗 Symlinks of col-resize and row-resize

This commit is contained in:
ful1e5
2021-06-12 17:38:00 +05:30
parent 922bdc85c3
commit d3377a1f0f
2 changed files with 15 additions and 6 deletions
+2
View File
@@ -26,6 +26,7 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = {
"bottom_right_corner.png": {"xhot": 100, "yhot": 100}, "bottom_right_corner.png": {"xhot": 100, "yhot": 100},
"bottom_side.png": {"xhot": 100, "yhot": 100}, "bottom_side.png": {"xhot": 100, "yhot": 100},
"center_ptr.png": {"xhot": 100, "yhot": 100}, "center_ptr.png": {"xhot": 100, "yhot": 100},
"col-resize.png": {"xhot": 100, "yhot": 100},
"context-menu.png": {"xhot": 100, "yhot": 100}, "context-menu.png": {"xhot": 100, "yhot": 100},
"copy.png": {"xhot": 100, "yhot": 100}, "copy.png": {"xhot": 100, "yhot": 100},
"cross.png": {"xhot": 100, "yhot": 100}, "cross.png": {"xhot": 100, "yhot": 100},
@@ -44,6 +45,7 @@ X_CURSORS_CFG: Dict[str, Dict[str, int]] = {
"plus.png": {"xhot": 100, "yhot": 100}, "plus.png": {"xhot": 100, "yhot": 100},
"question_arrow.png": {"xhot": 100, "yhot": 100}, "question_arrow.png": {"xhot": 100, "yhot": 100},
"right_ptr.png": {"xhot": 100, "yhot": 100}, "right_ptr.png": {"xhot": 100, "yhot": 100},
"row-resize.png": {"xhot": 100, "yhot": 100},
"right_side.png": {"xhot": 100, "yhot": 100}, "right_side.png": {"xhot": 100, "yhot": 100},
"sb_down_arrow.png": {"xhot": 100, "yhot": 100}, "sb_down_arrow.png": {"xhot": 100, "yhot": 100},
"sb_h_double_arrow.png": {"xhot": 100, "yhot": 100}, "sb_h_double_arrow.png": {"xhot": 100, "yhot": 100},
+13 -6
View File
@@ -26,6 +26,12 @@ def add_missing_xcursor(directory) -> None:
"se-resize", "se-resize",
], ],
}, },
{
"src": "col-resize",
"links": [
"split_h",
],
},
{ {
"src": "copy", "src": "copy",
"links": [ "links": [
@@ -41,7 +47,6 @@ def add_missing_xcursor(directory) -> None:
"cross_reverse", "cross_reverse",
"diamond_cross", "diamond_cross",
"tcross", "tcross",
"color-picker",
"crosshair", "crosshair",
], ],
}, },
@@ -135,20 +140,24 @@ def add_missing_xcursor(directory) -> None:
"dnd-ask", "dnd-ask",
], ],
}, },
{"src": "right_ptr", "links": ["draft_large", "draft_small"]}, # required {"src": "right_ptr", "links": ["draft_large", "draft_small"]},
{
"src": "row-resize",
"links": [
"split_v",
],
},
{"src": "sb_down_arrow", "links": ["down-arrow"]}, {"src": "sb_down_arrow", "links": ["down-arrow"]},
{ {
"src": "sb_h_double_arrow", "src": "sb_h_double_arrow",
"links": [ "links": [
"028006030e0e7ebffc7f7070c0600140", "028006030e0e7ebffc7f7070c0600140",
"14fef782d02440884392942c1120523", "14fef782d02440884392942c1120523",
"col-resize",
"e-resize", "e-resize",
"ew-resize", "ew-resize",
"h_double_arrow", "h_double_arrow",
"size-hor", "size-hor",
"size_hor", "size_hor",
"split_h",
"w-resize", "w-resize",
], ],
}, },
@@ -163,11 +172,9 @@ def add_missing_xcursor(directory) -> None:
"double_arrow", "double_arrow",
"n-resize", "n-resize",
"ns-resize", "ns-resize",
"row-resize",
"size-ver", "size-ver",
"size_ver", "size_ver",
"s-resize", "s-resize",
"split_v",
"v_double_arrow", "v_double_arrow",
], ],
}, },