mirror of
https://git.freebsd.org/ports.git
synced 2025-07-15 08:19:13 -04:00
- Window snapping (maximize a window to a side or corder of the screen) by dragging is now supported. - It is now possible to customize behavior when a maximized window is dragged. - A knob is added to globally ignore decoration hints from GNOME appications. - A ICCCM protocol for window manager replacement has been supported.
24 lines
1.3 KiB
C
24 lines
1.3 KiB
C
--- WPrefs.app/Paths.c.orig 2015-08-11 18:41:14 UTC
|
|
+++ WPrefs.app/Paths.c
|
|
@@ -78,9 +78,9 @@ static void showData(_Panel * panel)
|
|
wwarning(_("bad value in option IconPath. Using default path list"));
|
|
addPathToList(panel->icoL, -1, "~/pixmaps");
|
|
addPathToList(panel->icoL, -1, "~/GNUstep/Library/Icons");
|
|
- addPathToList(panel->icoL, -1, "/usr/include/X11/pixmaps");
|
|
- addPathToList(panel->icoL, -1, "/usr/local/share/WindowMaker/Icons");
|
|
- addPathToList(panel->icoL, -1, "/usr/local/share/WindowMaker/Pixmaps");
|
|
+ addPathToList(panel->icoL, -1, PREFIX "/share/pixmaps");
|
|
+ addPathToList(panel->icoL, -1, PREFIX "/share/WindowMaker/Icons");
|
|
+ addPathToList(panel->icoL, -1, PREFIX "/share/WindowMaker/Pixmaps");
|
|
addPathToList(panel->icoL, -1, "/usr/share/WindowMaker/Icons");
|
|
} else {
|
|
for (i = 0; i < WMGetPropListItemCount(array); i++) {
|
|
@@ -95,7 +95,7 @@ static void showData(_Panel * panel)
|
|
wwarning(_("bad value in option PixmapPath. Using default path list"));
|
|
addPathToList(panel->pixL, -1, "~/pixmaps");
|
|
addPathToList(panel->pixL, -1, "~/GNUstep/Library/WindowMaker/Pixmaps");
|
|
- addPathToList(panel->pixL, -1, "/usr/local/share/WindowMaker/Pixmaps");
|
|
+ addPathToList(panel->pixL, -1, PREFIX "/share/WindowMaker/Pixmaps");
|
|
} else {
|
|
for (i = 0; i < WMGetPropListItemCount(array); i++) {
|
|
val = WMGetFromPLArray(array, i);
|