1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-20 04:48:06 +01:00

- Eliminated the double no-position-display gap when switching position

display types with the Shift key while moving windows
- Added be.po to configure.ac
- Changed the default resize window display type to 'Center'
This commit is contained in:
dan
2002-10-25 03:37:51 +00:00
parent ffa1a610c0
commit 55efa1f268
6 changed files with 14 additions and 8 deletions

View File

@@ -24,6 +24,9 @@ Changes since version 0.80.1:
<sato@cvs-net.co.jp>)
- Added Belarusian translation (Ihar Viarheichyk <iverg@mail.ru>)
- 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:

View File

@@ -45,7 +45,6 @@
Unfocusable = Yes;
DontSaveSession = Yes;
};
bookmarks.Netscape = {NoAppIcon = YES;};
xcalc = {AlwaysUserIcon = Yes;Icon = "HP-16C-48.xpm";};
Netscape = {Icon = Netscape.xpm;};

View File

@@ -57,7 +57,7 @@
AutoArrangeIcons = NO;
AdvanceToNewWorkspace = NO;
CycleWorkspaces = NO;
ResizeDisplay = line;
ResizeDisplay = center;
MoveDisplay = floating;
OpaqueMove = YES;
IconPosition = "blh";

View File

@@ -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"

View File

@@ -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 \

View File

@@ -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) {