mirror of
https://github.com/gryf/wmaker.git
synced 2026-01-07 14:24:14 +01:00
- Fixed a bug that crashed wmaker when closing a window if multiple screens
were managed by wmaker (Valery Kotchiev <aggregator@nospam.dk>) - Fixed a problem that crashed wmaker when trying to read an unexisting WMState.<number> file on multihead system. - Fixed problem with keyboard shortcuts executed an every screen for multihead systems.
This commit is contained in:
@@ -31,23 +31,27 @@ static Bool _XErrorOccured = False;
|
||||
|
||||
|
||||
|
||||
static unsigned defDraggingSourceOperation(WMView *self, Bool local)
|
||||
static unsigned
|
||||
defDraggingSourceOperation(WMView *self, Bool local)
|
||||
{
|
||||
return WDOperationCopy;
|
||||
}
|
||||
|
||||
|
||||
static void defBeganDragImage(WMView *self, WMPixmap *image, WMPoint point)
|
||||
static void
|
||||
defBeganDragImage(WMView *self, WMPixmap *image, WMPoint point)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
static void defEndedDragImage(WMView *self, WMPixmap *image, WMPoint point,
|
||||
Bool deposited)
|
||||
static void
|
||||
defEndedDragImage(WMView *self, WMPixmap *image, WMPoint point, Bool deposited)
|
||||
{
|
||||
}
|
||||
|
||||
static WMData* defFetchDragData(WMView *self, char *type)
|
||||
|
||||
static WMData*
|
||||
defFetchDragData(WMView *self, char *type)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user