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:
@@ -24,6 +24,9 @@ Changes since version 0.80.1:
|
|||||||
<sato@cvs-net.co.jp>)
|
<sato@cvs-net.co.jp>)
|
||||||
- Added Belarusian translation (Ihar Viarheichyk <iverg@mail.ru>)
|
- Added Belarusian translation (Ihar Viarheichyk <iverg@mail.ru>)
|
||||||
- Fixed wrlib to not try to load braindead images with 0x0 size
|
- 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:
|
Changes since version 0.80.0:
|
||||||
|
|||||||
@@ -45,7 +45,6 @@
|
|||||||
Unfocusable = Yes;
|
Unfocusable = Yes;
|
||||||
DontSaveSession = Yes;
|
DontSaveSession = Yes;
|
||||||
};
|
};
|
||||||
|
|
||||||
bookmarks.Netscape = {NoAppIcon = YES;};
|
bookmarks.Netscape = {NoAppIcon = YES;};
|
||||||
xcalc = {AlwaysUserIcon = Yes;Icon = "HP-16C-48.xpm";};
|
xcalc = {AlwaysUserIcon = Yes;Icon = "HP-16C-48.xpm";};
|
||||||
Netscape = {Icon = Netscape.xpm;};
|
Netscape = {Icon = Netscape.xpm;};
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
AutoArrangeIcons = NO;
|
AutoArrangeIcons = NO;
|
||||||
AdvanceToNewWorkspace = NO;
|
AdvanceToNewWorkspace = NO;
|
||||||
CycleWorkspaces = NO;
|
CycleWorkspaces = NO;
|
||||||
ResizeDisplay = line;
|
ResizeDisplay = center;
|
||||||
MoveDisplay = floating;
|
MoveDisplay = floating;
|
||||||
OpaqueMove = YES;
|
OpaqueMove = YES;
|
||||||
IconPosition = "blh";
|
IconPosition = "blh";
|
||||||
|
|||||||
@@ -286,7 +286,7 @@ dnl ==================
|
|||||||
|
|
||||||
dnl List of supported locales
|
dnl List of supported locales
|
||||||
dnl -------------------------
|
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_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"
|
supported_wings_locales="cs de sk"
|
||||||
|
|
||||||
|
|||||||
@@ -5,9 +5,9 @@ CATALOGS = @MOFILES@
|
|||||||
CLEANFILES = $(CATALOGS) WindowMaker.pot
|
CLEANFILES = $(CATALOGS) WindowMaker.pot
|
||||||
|
|
||||||
# keep this sorted
|
# 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 \
|
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 = \
|
POTFILES = \
|
||||||
$(top_builddir)/src/appicon.c \
|
$(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++;
|
||||||
wPreferences.move_display %= NUM_DISPLAYS;
|
wPreferences.move_display %= NUM_DISPLAYS;
|
||||||
|
|
||||||
if (wPreferences.move_display == WDIS_NEW
|
if (wPreferences.move_display == WDIS_NEW) {
|
||||||
|| wPreferences.move_display == WDIS_NONE) {
|
wPreferences.move_display++;
|
||||||
|
wPreferences.move_display %= NUM_DISPLAYS;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (wPreferences.move_display == WDIS_NONE) {
|
||||||
WMUnmapWidget(scr->gview);
|
WMUnmapWidget(scr->gview);
|
||||||
} else {
|
} else {
|
||||||
if (wPreferences.move_display == WDIS_CENTER) {
|
if (wPreferences.move_display == WDIS_CENTER) {
|
||||||
|
|||||||
Reference in New Issue
Block a user