mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 20:38:08 +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:
@@ -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:
|
||||
|
||||
@@ -45,7 +45,6 @@
|
||||
Unfocusable = Yes;
|
||||
DontSaveSession = Yes;
|
||||
};
|
||||
|
||||
bookmarks.Netscape = {NoAppIcon = YES;};
|
||||
xcalc = {AlwaysUserIcon = Yes;Icon = "HP-16C-48.xpm";};
|
||||
Netscape = {Icon = Netscape.xpm;};
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
AutoArrangeIcons = NO;
|
||||
AdvanceToNewWorkspace = NO;
|
||||
CycleWorkspaces = NO;
|
||||
ResizeDisplay = line;
|
||||
ResizeDisplay = center;
|
||||
MoveDisplay = floating;
|
||||
OpaqueMove = YES;
|
||||
IconPosition = "blh";
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -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 \
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user