diff --git a/ChangeLog b/ChangeLog index 7f365500..0cd47a73 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24,6 +24,9 @@ Changes since version 0.80.1: ) - Added Belarusian translation (Ihar Viarheichyk ) - Fixed wrlib to not try to load braindead images with 0x0 size +- Removed double no-position-display when cycling position display types + with Shift key while moving windows. +- Changed the default position display while moving a window to 'Center'. Changes since version 0.80.0: diff --git a/WindowMaker/Defaults/WMWindowAttributes.in b/WindowMaker/Defaults/WMWindowAttributes.in index 08af6dec..92312861 100644 --- a/WindowMaker/Defaults/WMWindowAttributes.in +++ b/WindowMaker/Defaults/WMWindowAttributes.in @@ -45,7 +45,6 @@ Unfocusable = Yes; DontSaveSession = Yes; }; - bookmarks.Netscape = {NoAppIcon = YES;}; xcalc = {AlwaysUserIcon = Yes;Icon = "HP-16C-48.xpm";}; Netscape = {Icon = Netscape.xpm;}; diff --git a/WindowMaker/Defaults/WindowMaker.in b/WindowMaker/Defaults/WindowMaker.in index a2f7e71c..89141fa1 100644 --- a/WindowMaker/Defaults/WindowMaker.in +++ b/WindowMaker/Defaults/WindowMaker.in @@ -57,7 +57,7 @@ AutoArrangeIcons = NO; AdvanceToNewWorkspace = NO; CycleWorkspaces = NO; - ResizeDisplay = line; + ResizeDisplay = center; MoveDisplay = floating; OpaqueMove = YES; IconPosition = "blh"; diff --git a/configure.ac b/configure.ac index afae4ec8..448960c1 100644 --- a/configure.ac +++ b/configure.ac @@ -286,7 +286,7 @@ dnl ================== dnl List of supported locales dnl ------------------------- -supported_locales="bg cs da de el es et fi fr gl hr hu it ja ko ms nl no pl pt ro ru sk sv tr zh_CN zh_TW.Big5" +supported_locales="be bg cs da de el es et fi fr gl hr hu it ja ko ms nl no pl pt ro ru sk sv tr zh_CN zh_TW.Big5" supported_wprefs_locales="bg cs de es et fi fr hr hu it ja ko pt ru sk zh_CN zh_TW.Big5" supported_wings_locales="cs de sk" diff --git a/po/Makefile.am b/po/Makefile.am index 707f6cca..7560b4bd 100644 --- a/po/Makefile.am +++ b/po/Makefile.am @@ -5,9 +5,9 @@ CATALOGS = @MOFILES@ CLEANFILES = $(CATALOGS) WindowMaker.pot # keep this sorted -EXTRA_DIST = bg.po cs.po da.po de.po el.po es.po et.po fi.po fr.po gl.po \ +EXTRA_DIST = be.po bg.po cs.po da.po de.po el.po es.po et.po fi.po fr.po gl.po \ hr.po hu.po it.po ja.po ko.po ms.po nl.po no.po pl.po pt.po ro.po \ - ru.po sk.po sv.po tr.po zh_CN.po zh_TW.Big5.po be.po + ru.po sk.po sv.po tr.po zh_CN.po zh_TW.Big5.po POTFILES = \ $(top_builddir)/src/appicon.c \ diff --git a/src/moveres.c b/src/moveres.c index 983a8c86..d1b5f8c0 100644 --- a/src/moveres.c +++ b/src/moveres.c @@ -169,8 +169,12 @@ cyclePositionDisplay(WWindow *wwin, int x, int y, int w, int h) wPreferences.move_display++; wPreferences.move_display %= NUM_DISPLAYS; - if (wPreferences.move_display == WDIS_NEW - || wPreferences.move_display == WDIS_NONE) { + if (wPreferences.move_display == WDIS_NEW) { + wPreferences.move_display++; + wPreferences.move_display %= NUM_DISPLAYS; + } + + if (wPreferences.move_display == WDIS_NONE) { WMUnmapWidget(scr->gview); } else { if (wPreferences.move_display == WDIS_CENTER) { @@ -180,7 +184,7 @@ cyclePositionDisplay(WWindow *wwin, int x, int y, int w, int h) moveGeometryDisplayCentered(scr, 1, 1); } else if (wPreferences.move_display == WDIS_FRAME_CENTER) { moveGeometryDisplayCentered(scr, x + w/2, y + h/2); - } + } WMMapWidget(scr->gview); } }