Commit c25e5c31 authored by dickelbeck's avatar dickelbeck
Browse files

bug fixes

parent 3237ea13
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -5,6 +5,23 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
email address.


2008-Apr-28 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
+pcbnew
  * Layer names were not being set into the htoolbar listbox properly if the
    BOARD was loaded via the command line as happens when kicad chain loads
    pcbnew. Also, layer names were not being set if a second board was loaded
    that had the same number of layers as the previous board. The solution was
    to comment out the listbox rebuild test in WinEDAChoiceBox*
    WinEDA_PcbFrame::ReCreateLayerBox( WinEDA_Toolbar* parent )
  * files.cpp:  added Clear_Pcb( false ) to LoadOnePcbFile() and call it if
    not appending.  This way a user can get into the file selection dialog and
    still abort (change his mind) without losing the current board.  Removed calls to
    Clear_Pcb() where LoadOnePcbFile() would now do that.
  * edtxtmod.cpp: fixed the drawing relics when moving and rotating module texts.


2008-Apr-21 UPDATE   Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+pcbnew
+1 −0
Original line number Diff line number Diff line
@@ -522,6 +522,7 @@ void WinEDA_BasePcbFrame::GeneralControle( wxDC* DC, wxPoint Mouse )

    if( delta.x <= 0 )
        delta.x = 1;

    if( delta.y <= 0 )
        delta.y = 1;

+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@

#include "dialog_edit_mod_text.h"

extern wxPoint MoveVector;  // Move vector for move edge, imported from dialog_edit mod_text.cpp
extern wxPoint MoveVector;  // Move vector for move edge, imported from edtxtmod.cpp

////@begin XPM images
////@end XPM images
+333 −208

File changed.

Preview size limit exceeded, changes collapsed.

+21 −7

File changed.

Preview size limit exceeded, changes collapsed.

Loading