Commit 96a9769f authored by charras's avatar charras
Browse files

++ Pcbnew:

    * in variable names, change non existent word Hight to High
    * Remove redundant tool in left toolbar (option toolbar)
      (this option is now in layers manager)
    * Show layers in horizontal combo box in same order as in layer manager.
++all:
    minor code cleaning.
parent c45d8cd4
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -4,6 +4,17 @@ KiCad ChangeLog 2010
Please add newer entries at the top, list the date and your name with
email address.

2010-Jan-24 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
++ Pcbnew:
    in variable names, change non existent word Hight to High
    Remove redundant tool in left toolbar (option toolbar)
    (this option is now in layers manager)
    Show layers in horizontal combo box in same order as in layer manager.

++all:
    minor code cleaning.

2010-Jan-23 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
++pcbnew's PCB_LAYER_WIDGET
+0 −1
Original line number Diff line number Diff line
@@ -247,7 +247,6 @@ set(BITMAP_SRCS
    mw_Add_Stub.xpm
    mw_toolbar.xpm
    Net_HighLight.xpm
    net_hightlight.xpm
    netlist.xpm
    Net_Locked.xpm
    Net_UnLocked.xpm

bitmaps/net_hightlight.xpm

deleted100644 → 0
+0 −30
Original line number Diff line number Diff line
/* XPM */
#ifndef XPMMAIN
extern const char* net_hightlight_xpm[];
#else
const char *net_hightlight_xpm[] = {
/* columns rows colors const chars-per-pixel */
"16 16 3 1",
"- c #008000",
". c #00FF00",
"X c None",
/* pixels */
"XXXXXXXXXXXXXXXX",
"XXXXXX-XXXXXXXXX",
"XXXXXX-XXXXXXXXX",
"XXXXXX-XXXXXXXXX",
"XXXXXX-XXXXXXXXX",
"XXXXX...XXXXXXXX",
"XXXX.....XXXXXXX",
"----.....------X",
"XXXX.....XXXXXXX",
"XXXXX...XXXXXXXX",
"XXXXXX-XXXXXXXXX",
"XXXXXX-XXXXXXXXX",
"XXXXXX-XXXXXXXXX",
"XXXXXX-XXXXXXXXX",
"XXXXXX-XXXXXXXXX",
"XXXXXXXXXXXXXXXX"
};

#endif
+2 −0
Original line number Diff line number Diff line
@@ -157,6 +157,8 @@ void WinEDA_ViewlibFrame::ReCreateHToolbar()

    m_HToolBar->EnableTool( ID_LIBVIEW_VIEWDOC,
                            entry && ( entry->GetDocFileName() != wxEmptyString ) );

    m_HToolBar->Refresh();
}


+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
#include "pcbplot.h"
#include "protos.h"
#include "kicad_device_context.h"
#include "gerbview_id.h"


/* Process the command triggered by the left button of the mouse when a tool
Loading