Commit 738be4e8 authored by charras's avatar charras

Pcbnew: fixed bug 2960364

parent bf841d6f
...@@ -3,10 +3,6 @@ ...@@ -3,10 +3,6 @@
* this is the wxTreeCtrl that shows a Kicad tree project files * this is the wxTreeCtrl that shows a Kicad tree project files
*/ */
#ifdef KICAD_PYTHON
#include <pyhandler.h>
#endif
#include "fctsys.h" #include "fctsys.h"
#include "common.h" #include "common.h"
#include "bitmaps.h" #include "bitmaps.h"
......
...@@ -108,8 +108,8 @@ DIALOG_DESIGN_RULES::DIALOG_DESIGN_RULES( WinEDA_PcbFrame* parent ) : ...@@ -108,8 +108,8 @@ DIALOG_DESIGN_RULES::DIALOG_DESIGN_RULES( WinEDA_PcbFrame* parent ) :
column0.Clear(); column0.Clear();
column1.Clear(); column1.Clear();
column0.SetImage( -1 ); column0.SetMask(wxLIST_MASK_TEXT);
column1.SetImage( -1 ); column1.SetMask(wxLIST_MASK_TEXT);
column0.SetText( _( "Net" ) ); column0.SetText( _( "Net" ) );
column1.SetText( _( "Class" ) ); column1.SetText( _( "Class" ) );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment