- 07 Apr, 2015 1 commit
-
-
jean-pierre charras authored
Eeschema: extend max number of units per package to 52 and clean code to easily extend this value upto 26x26 (but 52 is a reasonable max value). Fix a few minor coverity warnings. Add about_dialog typo fix from Nick Østergaard
-
- 02 Apr, 2015 1 commit
-
-
jean-pierre charras authored
Fix minor 3D viewer issues (includling change number of segments and its optimization to draw pad holes.) Fix Bug #1439132 (track and via list on toolbar not always refresh after loading a board). Remove useless tool in Modedit.
-
- 31 Mar, 2015 1 commit
-
-
jean-pierre charras authored
3d viewer: fix a few warning coverity (and a potential bug). fp libs wizard: make it internationalized, and replace an untranslatable string created by grouping 3 strings by one translatable string.
-
- 29 Mar, 2015 2 commits
- 28 Mar, 2015 2 commits
- 26 Mar, 2015 1 commit
-
-
Wayne Stambaugh authored
* Make OK button the default action in the 3D viewer option dialog per UI policy. * Fix standard button sizer padding in 3D viewer options dialog. * Let sizers do their job by using default size for 3D viewer options dialog. * Set 3D viewer hot key to Alt+3 in all parent windows where 3D viewer is accessible. * Minor code cleaning and coding policy fixes.
-
- 23 Mar, 2015 1 commit
-
-
jean-pierre charras authored
Very minor fixes: 3D viewer: remove artifacts with NPTH pads having the save size as their hole. Kicad: remove duplicate submenu in menubar. remove a minor coverity warning
-
- 17 Mar, 2015 1 commit
-
-
jean-pierre charras authored
they are now shown only when a new board is loaded, if there are warnings.
-
- 16 Mar, 2015 1 commit
-
-
jean-pierre charras authored
Try to fix Bug #1431765 (Pcbnew crashes in GAL when entering 3d display when a board outline is not closed) This change modify the way warning messages are displayed: now the are displayed outside a paint event.
-
- 15 Mar, 2015 1 commit
-
-
Mario Luzeiro authored
-
- 13 Mar, 2015 1 commit
-
-
unknown authored
-
- 11 Mar, 2015 1 commit
-
-
jean-pierre charras authored
Fix minor bug #1429990 (3D viewer shows hidden footprint graphic texts ). Fix minor coverity warnings (not initialized members and dead code)
-
- 10 Mar, 2015 1 commit
-
-
unknown authored
-
- 06 Mar, 2015 1 commit
-
-
unknown authored
Minot fixes: Minor coding style issues fix (tab -> spaces). Add missing GetClass to all classes derived from EDA_ITEM. Make debug method Show() only compiled in debug mode.
-
- 05 Mar, 2015 1 commit
-
-
jean-pierre charras authored
Minor fixes: coding style in 3d-viewer and minor code cleanup, and some fixes in bom python scripts, which did not work when a non ascii char (but a valid utf8 symbol) was found in xml netlist. Add comments.
-
- 28 Feb, 2015 1 commit
-
-
Wayne Stambaugh authored
-
- 26 Feb, 2015 1 commit
-
-
jean-pierre charras authored
Fix some coverity warnings (not initialized members). Add comments. Better (more informative) title in dialog to download .pretty libs.
-
- 21 Feb, 2015 2 commits
-
-
Mark Roszko authored
-
Wayne Stambaugh authored
-
- 20 Feb, 2015 1 commit
-
-
Mark Roszko authored
* Fix coverity scan error for array comparison. * Check for buffer length overflow that fixes segfault.
-
- 17 Feb, 2015 2 commits
-
-
jean-pierre charras authored
Temporary fix a crash I created in rev 5427, when erasing all modules on a board and read the netlist. Will be fully fixed later. Very minor fixes: remove duplicate #define in vrml_v2_modelparser.cpp, and "undo" a very minor change I made in class_board.cpp when I tried to fix a Pcbnew crash.
-
jean-pierre charras authored
Pcbnew: fix Bug #1422093 (pcbnew crashes after editing a footprint cominng from the board with the fp editor and saving it on a librray and trying to load it to the board) Some other very minor fixes.
-
- 15 Feb, 2015 1 commit
-
-
Sven D authored
* Add support for VRML DEF coordinate key word. * Coding policy fixes by Blair Bonnett <blair.bonnett@gmail.com> * Debugging output clean up.
-
- 23 Jan, 2015 1 commit
-
-
jean-pierre charras authored
Pcbnew: fix Bug #1413701 (Segfault on highlight "unconnected" net 0 in Pcbnew ). Also, remove now useless code and other very minor fixes.
-
- 18 Jan, 2015 1 commit
-
-
unknown authored
-
- 15 Nov, 2014 1 commit
-
-
Camille authored
-
- 30 Oct, 2014 2 commits
-
-
Garth Corral authored
steps to better support devices with precise scrolling deltas (trackpads). Scrolling is done in the handler rather than creating and firing cmd events. This is intended to support two-finger scrolling on the Magic Trackpad. - Added a preference, 'Use mousewheel to pan', to allow panning by default on mousewheel events. This reverses the existing behavior where unmodified mousewheel zooms and Shift/Cmd modified pans. The old behavior was: - Unmodified scrollwheel performed zoom in/out - Shift modified scrollwheel performed pan up/down - Cmd modified scrollwheel performed pan left/right - Shift+Cmd modified scrollwheel performed zoom in/out with no cursor warp With the new preference checked, this changes to: - Unmodified scrollwheel performs pan up/down - Shift modified scrollwheel performs pan left/right - Cmd modified scrollwheel performs zoom in/out - Shift+Cmd modified scrollwheel performs zoom in/out with no cursor warp With the preference unchecked, this is now: - Unmodified scrollwheel performed zoom in/out - Shift modified scrollwheel performed pan left/right - Cmd modified scrollwheel performed pan up/down - Shift+Cmd modified scrollwheel performed zoom in/out with no cursor warp It should be noted that for the last case, the behavior has changed. This is not arbitrary. This now matches expected behavior for an OS X application. This also matches what wxWidgets expects on this platform as wxWidgets changes the axis of mousewheel events to horizontal when the event is shift-modified. The preference is added everwhere that mouse preferences previously existed, i.e., eeschema, pcbnew and gerbview. The 3D Viewer does not yet honor this preference, but behaves as if it was checked. The pl_editor does not currently have any preferences to honor. As with the magnify event support, this covers canvases for all current tools, EDA_DRAW_PANEL, EDA_3D_CANVAS and EDA_DRAW_PANEL_GAL. This does NOT modify the behavior of mousewheel zooming, though it probably should. This remains unsuitable for use with a trackpad, use pinch-to-zoom instead.
-
Garth Corral authored
Committing this separately from the rest to ease making a patch for just this functionality in case that it might make it into the trunk. This can function standalone, though it is less useful without the rest. It requires that wxwidgets-3.0.0_macosx_magnify_event.patch be applied to wxWidgets It is completely optional; everything is guarded by the USE_OSX_MAGNIFY_EVENT macro. - Added OnMagnify event handler to EDA_DRAW_PANEL, EDA_3D_CANVAS and the helper for EDA_DRAW_PANEL_GAL, WX_VIEW_CONTROLS. This should cover canvases all current tools. - Guarded all with USE_OSX_MAGNIFY EVENT feature macro and added support in CMakeLists.txt
-
- 19 Oct, 2014 1 commit
-
-
Wayne Stambaugh authored
-
- 07 Oct, 2014 1 commit
-
-
Henri Valta authored
-
- 06 Oct, 2014 1 commit
-
-
jean-pierre charras authored
Cleaning 3 svg files (no icon change) Very minor other changes.
-
- 25 Aug, 2014 1 commit
-
-
jean-pierre charras authored
Eeschema: add dialog libedit options and move options relative to libedit from eeschema options to this dialog. Ensure some values initialized by the schematic editor and used by libedit are also initialized in libedit even if the schematic editor was not started. Remove useless commands (save/load project config) in libedit, because now they have no sense.
-
- 24 Aug, 2014 2 commits
-
-
jean-pierre charras authored
-
jean-pierre charras authored
Rework on env. variable KISYS3DMOD. Until now, was used in different files using different ways, so no consistency between files. code cleanup.
-
- 22 Aug, 2014 1 commit
-
-
jean-pierre charras authored
-
- 21 Aug, 2014 1 commit
-
-
jean-pierre charras authored
-
- 20 Aug, 2014 2 commits
-
-
jean-pierre charras authored
-
jean-pierre charras authored
-