Ticket #55 (closed defect: duplicate)

Opened 10 months ago

Last modified 5 months ago

don't allow elements to be added without at least an `append`

Reported by: beb Owned by: why
Milestone: Murder Keywords:
Cc:

Description

win32, r279:

Shoes.app do
  button "add para" do
    para "here"
  end
end

The text "here" is shown just after the window is resized or moved out of the screen and moved in again.

Expected: should be visible instantly.

Change History

Changed 10 months ago by beb

After clicking the button, of course :)

Changed 10 months ago by why

  • owner set to why
  • status changed from new to assigned

Well, the code should be:

Shoes.app do
  button "add para" do
    append { para "here" }
  end
end

Adding the element without an append should throw an error.

Changed 8 months ago by why

  • summary changed from win32 needs repaint to don't allow elements to be added without at least an `append`

Changed 6 months ago by why

  • milestone set to Murder

Changed 5 months ago by why

  • status changed from assigned to closed
  • resolution set to duplicate

Moved to ditz, new ticket #shoes-1.

Note: See TracTickets for help on using tickets.