Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
ce52cf5b
Commit
ce52cf5b
authored
Dec 12, 2009
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eeschema: fixed component drag not working.
parent
43c034d0
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
702 additions
and
679 deletions
+702
-679
TODO.txt
TODO.txt
+0
-20
schedit.cpp
eeschema/schedit.cpp
+3
-2
kicad.mo
internat/fr/kicad.mo
+0
-0
kicad.po
internat/fr/kicad.po
+699
-657
No files found.
TODO.txt
View file @
ce52cf5b
...
@@ -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.
...
...
eeschema/schedit.cpp
View file @
ce52cf5b
...
@@ -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
);
}
}
}
}
...
...
internat/fr/kicad.mo
View file @
ce52cf5b
No preview for this file type
internat/fr/kicad.po
View file @
ce52cf5b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment