Skip to content

Commit

Permalink
draw location of widget while selecting widget type
Browse files Browse the repository at this point in the history
  • Loading branch information
jafl committed Mar 20, 2024
1 parent 02dde80 commit 3cbf83a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
9 changes: 4 additions & 5 deletions todo
@@ -1,6 +1,3 @@
jcc search
doesn't stick to selection while search is running

multi-pane editing

TextEditor::WriteSetup + keyHandler +
Expand All @@ -19,9 +16,9 @@ multi-pane editing
medic
when kill program, doesn't clear current source line marker

-----

jcc
use correct word wrap setting when diff from project window

json styler: key vs value

cmd window sometimes loses last chunk of program output
Expand All @@ -34,6 +31,8 @@ jcc
glove
undo then redo "transform creates column": puts values back in inverted order

NonLinearFitDialog: scrollbar sets are wider than window

remember open documents and restore when start

fit window:
Expand Down
3 changes: 2 additions & 1 deletion tools/jx_layout_editor/code/LayoutContainer.cpp
Expand Up @@ -1245,7 +1245,8 @@ LayoutContainer::Draw
JPainter* dp = nullptr;
if (!itsCreateRect.IsEmpty() && GetDragPainter(&dp))
{
dp->Rect(itsCreateRect);
p.SetPenColor(JColorManager::GetBlackColor());
p.Rect(itsCreateRect);
}
}

Expand Down
2 changes: 1 addition & 1 deletion tools/jx_layout_editor/code/Partition.cpp
Expand Up @@ -308,7 +308,7 @@ Partition::SavePanelData()
itsPanel->GetValues(&minSizes, &elasticIndex);
itsPanel = nullptr;

JSize total = 0;
JCoordinate total = 0;
for (const auto v : minSizes)
{
total += v + JPartition::kDragRegionSize;
Expand Down

0 comments on commit 3cbf83a

Please sign in to comment.