Skip to content

Commit

Permalink
Add missing window titles.
Browse files Browse the repository at this point in the history
  • Loading branch information
azuev-java committed Oct 8, 2024
1 parent 2b70a5e commit 3639219
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public class ChoiceDragEventsInside extends Frame {
volatile boolean mouseDraggedOutside = false;

public void setupUI() {
setTitle("Choce Drag Events Inside");
choice1 = new Choice();
for (int i = 1; i < 50; i++) {
choice1.add("item-0" + i);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public class ChoiceMouseEventTest extends Frame {
static Dimension size;

public void setupGUI() {
setTitle("Choice Mouse Event Test");
this.setLayout(new BorderLayout());
choice.add("item-1");
choice.add("item-2");
Expand Down

0 comments on commit 3639219

Please sign in to comment.