kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #19509
[bpanak@xxxxxxxxx: kicad possible bug]
Good point. Forwarded to the list.
----- Forwarded message from branislav panak <bpanak@xxxxxxxxx> -----
Date: Wed, 29 Jul 2015 19:33:45 +0200
From: branislav panak <bpanak@xxxxxxxxx>
To: Pavlina.Chris@xxxxxxxxx
Subject: kicad possible bug
Hi Chris, i saw you are very active in Kicad dev team, i just subscribed
but was not approved yet.
I think that i found possible bug in code in common/draw_panel.cpp
#if wxMAJOR_VERSION >= 2 && wxMINOR_VERSION >= 9
int axis = event.GetWheelAxis();
#else
const int axis = 0;
#endif
probably does not work for for 3.xx versions of wx, possible correction
follows
#if (wxMAJOR_VERSION == 2 && wxMINOR_VERSION >= 9) || wxMAJOR_VERSION > 2
i am new in this board and can not submit to dev team mailing list yet so
if you see this relevant please feel free to submit it.
regards
Brano
----- End forwarded message -----
Follow ups