[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Stratagus-CVS] stratagus doc/ChangeLog.html src/editor/editloop.c
From: |
Russell Smith |
Subject: |
[Stratagus-CVS] stratagus doc/ChangeLog.html src/editor/editloop.c |
Date: |
Fri, 14 Nov 2003 02:50:34 -0500 |
CVSROOT: /cvsroot/stratagus
Module name: stratagus
Branch:
Changes by: Russell Smith <address@hidden> 03/11/14 02:50:34
Modified files:
doc : ChangeLog.html
src/editor : editloop.c
Log message:
Fixed Bug #6466: Can't change between Units/Tile with left mouse after
click menu in editor
Patches:
Index: stratagus/doc/ChangeLog.html
diff -u stratagus/doc/ChangeLog.html:1.576 stratagus/doc/ChangeLog.html:1.577
--- stratagus/doc/ChangeLog.html:1.576 Thu Nov 13 21:26:53 2003
+++ stratagus/doc/ChangeLog.html Fri Nov 14 02:50:34 2003
@@ -2,7 +2,7 @@
<html>
<head>
<!--
----- $Id: ChangeLog.html,v 1.576 2003/11/14 02:26:53 jsalmon3 Exp $
+---- $Id: ChangeLog.html,v 1.577 2003/11/14 07:50:34 mr-russ Exp $
---- (c) Copyright 1998-2003 by Lutz Sammer
@@ -36,12 +36,14 @@
<li>Future 2.00 Release<p>
<ul>
<li>++
+ <li>Fixed Bug #6466: Can't change between Units/Tile with left mouse after
click menu in editor (from Russell Smith).
<li>Fixed Bug #6522: Set Harvest/Mining button doesn't work (from Jimmy
Salmon).
<li>Fixed Bug #5602: Replay's use incorrect player when playing single
player from Multiplayer menu (from Pollet Ludovic).
<li>Fixed Bug #6444: Passive AI is not passive (from Pollet Ludovic).
<li>Fixed Bug #6392: Crash with guile support enabled (from Pollet
Ludovic).
<li>Fixed Bug #6516: Cactus selection problem in Magnant (from Russell
Smith).
- <li>Fixed Bug #6427: and added a brand new seen mechanism (from Crestez
Leonard).
+ <li>Added a brand new seen mechanism (from Crestez Leonard).
+ <li>Fixed Bug #6427: Buildings Under Construction Upgraded Under FOW (from
Crestez Leonard).
<li>Fixed Bug #6391: Infinite loop in UpdateMinimap() (from Russell Smith).
<li>Major clean-up in checking goals that disappear and unit reference
counting (from Crestez Leonard).
<li>Fixed Bug #5992: Little undesirable effects with invisibility and
flameShield spell (from Crestez Leonard).
Index: stratagus/src/editor/editloop.c
diff -u stratagus/src/editor/editloop.c:1.141
stratagus/src/editor/editloop.c:1.142
--- stratagus/src/editor/editloop.c:1.141 Wed Nov 12 15:41:43 2003
+++ stratagus/src/editor/editloop.c Fri Nov 14 02:50:34 2003
@@ -26,7 +26,7 @@
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
// 02111-1307, USA.
//
-// $Id: editloop.c,v 1.141 2003/11/12 20:41:43 jsalmon3 Exp $
+// $Id: editloop.c,v 1.142 2003/11/14 07:50:34 mr-russ Exp $
//@{
@@ -1691,6 +1691,7 @@
TheUI.InfoPanelY + 4 < CursorY &&
CursorY < TheUI.InfoPanelY + 4 + IconHeight + 7) {
// FIXME: what is this button?
+ ButtonAreaUnderCursor = -1;
ButtonUnderCursor = SelectButton;
CursorOn = CursorOnButton;
SetStatusLine("Select mode");
@@ -1700,6 +1701,7 @@
CursorX < TheUI.InfoPanelX + 4 + UNIT_ICON_X + IconWidth + 7 &&
TheUI.InfoPanelY + 4 + UNIT_ICON_Y < CursorY &&
CursorY < TheUI.InfoPanelY + 4 + UNIT_ICON_Y + IconHeight + 7) {
+ ButtonAreaUnderCursor = -1;
ButtonUnderCursor = UnitButton;
CursorOn = CursorOnButton;
SetStatusLine("Unit mode");
@@ -1709,6 +1711,7 @@
CursorX < TheUI.InfoPanelX + 4 + TILE_ICON_X + TileSizeX + 7 &&
TheUI.InfoPanelY + 4 + TILE_ICON_Y < CursorY &&
CursorY < TheUI.InfoPanelY + 4 + TILE_ICON_Y + TileSizeY + 7) {
+ ButtonAreaUnderCursor = -1;
ButtonUnderCursor = TileButton;
CursorOn = CursorOnButton;
SetStatusLine("Tile mode");
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Stratagus-CVS] stratagus doc/ChangeLog.html src/editor/editloop.c,
Russell Smith <=