Fix for #71478 (Imagemap plug-in does not draw some rectangles correctly)

This commit is contained in:
Maurits Rijk
2002-06-14 07:13:36 +00:00
parent 678a878cb9
commit 3bc492bab7
4 changed files with 28 additions and 4 deletions

View File

@ -3,7 +3,7 @@
*
* Generates clickable image maps.
*
* Copyright (C) 1998-1999 Maurits Rijk lpeek.mrijk@consunet.nl
* Copyright (C) 1998-2002 Maurits Rijk lpeek.mrijk@consunet.nl
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -66,6 +66,7 @@ select_command_execute(Command_t *parent)
{
SelectCommand_t *command = (SelectCommand_t*) parent;
object_select(command->obj);
redraw_preview(); /* Fix me! */
return CMD_APPEND;
}
@ -74,4 +75,5 @@ select_command_undo(Command_t *parent)
{
SelectCommand_t *command = (SelectCommand_t*) parent;
object_unselect(command->obj);
redraw_preview(); /* Fix me! */
}