Commit ce52cf5b authored by charras's avatar charras

Eeschema: fixed component drag not working.

parent 43c034d0
...@@ -10,10 +10,6 @@ CMAKE ...@@ -10,10 +10,6 @@ CMAKE
Common Common
------ ------
*BUGS*
* PCBNew and EEschema opened and rotating a footprint in pcbnew let the
EESchema drawing flikker/refresh.
* Grep for @TODO or TODO for sourcecode tasks * Grep for @TODO or TODO for sourcecode tasks
* Use doxygen compatible comments on member functions (.h files) * Use doxygen compatible comments on member functions (.h files)
* Add tooltip text to all non-obvious controls in every dialog window. * Add tooltip text to all non-obvious controls in every dialog window.
...@@ -23,12 +19,6 @@ Common ...@@ -23,12 +19,6 @@ Common
* Create a better and cleaner add component and footprint dialog. * Create a better and cleaner add component and footprint dialog.
* List auto up and down scrolling. * List auto up and down scrolling.
* Toolbars and menus should be equal. * Toolbars and menus should be equal.
* Select one component, not a whole block
(like in PCB, EAGLE, MultiSim/Ultiboard)
* Cursor selection
* Cross small
* Cross fullscreen
* Normal arrow
* (Main) dialog(s) title(s) should always be the same and not change over time * (Main) dialog(s) title(s) should always be the same and not change over time
when not needed. For example KiCad - <file loaded> or PCBNew - <file loaded>. when not needed. For example KiCad - <file loaded> or PCBNew - <file loaded>.
We dont have to see which build in the titlebar. This makes documentation We dont have to see which build in the titlebar. This makes documentation
...@@ -45,11 +35,6 @@ CvPCB ...@@ -45,11 +35,6 @@ CvPCB
EESchema EESchema
-------- --------
*BUGS*
* If we add multiple leds and connect them with one wire there is no junction
placed between the ends, then I have to place manual the junctions or else it
is not connected in the netlist so only one led/connection is made
(for example to the Power GND symbol).
*Improvements* *Improvements*
* Component add list browser with optional component preview. * Component add list browser with optional component preview.
...@@ -80,11 +65,6 @@ PCBNew ...@@ -80,11 +65,6 @@ PCBNew
* Fix DIALOG_PAD_PROPERTIES_BASE class to use actual layer names in the BOARD. * Fix DIALOG_PAD_PROPERTIES_BASE class to use actual layer names in the BOARD.
* Via's
* Show via's like normal pad but with different colors, not only circles.
* Resizing/placing vias should not be so odd, should be easier and more
advanced features like the other EDA applications.
* Use BOARD_ITEM::MenuIcon() in the onrightclick.cpp * Use BOARD_ITEM::MenuIcon() in the onrightclick.cpp
* Add unroute option in rightclick menu for components * Add unroute option in rightclick menu for components
* Document specctra round tripper, and fix the english translation of help. * Document specctra round tripper, and fix the english translation of help.
......
...@@ -416,8 +416,7 @@ void WinEDA_SchematicFrame::Process_Special_Functions( wxCommandEvent& event ) ...@@ -416,8 +416,7 @@ void WinEDA_SchematicFrame::Process_Special_Functions( wxCommandEvent& event )
case ID_POPUP_SCH_MOVE_ITEM_REQUEST: case ID_POPUP_SCH_MOVE_ITEM_REQUEST:
DrawPanel->MouseToCursorSchema(); DrawPanel->MouseToCursorSchema();
if( (id == ID_POPUP_SCH_DRAG_CMP_REQUEST ) || if( id == ID_POPUP_SCH_DRAG_CMP_REQUEST )
(id == ID_POPUP_SCH_DRAG_WIRE_REQUEST ) )
{ {
// The easiest way to handle a drag component is to simulate a // The easiest way to handle a drag component is to simulate a
// block drag command // block drag command
...@@ -426,6 +425,8 @@ void WinEDA_SchematicFrame::Process_Special_Functions( wxCommandEvent& event ) ...@@ -426,6 +425,8 @@ void WinEDA_SchematicFrame::Process_Special_Functions( wxCommandEvent& event )
if( !HandleBlockBegin( &dc, BLOCK_DRAG, if( !HandleBlockBegin( &dc, BLOCK_DRAG,
screen->m_Curseur ) ) screen->m_Curseur ) )
break; break;
// Give a non null size to the search block:
screen->m_BlockLocate.Inflate(1);
HandleBlockEnd( &dc ); HandleBlockEnd( &dc );
} }
} }
......
No preview for this file type
This diff is collapsed.
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