summaryrefslogtreecommitdiff
path: root/beos/about.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'beos/about.cpp')
-rw-r--r--beos/about.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/beos/about.cpp b/beos/about.cpp
index bfe836e62..f8447fa2a 100644
--- a/beos/about.cpp
+++ b/beos/about.cpp
@@ -114,7 +114,14 @@ void nsbeos_about(struct gui_window *gui)
alert->AddToSubset(w);
}
}
+
+ // make space for controls
+ alert->ResizeBy(200, 640);
+ alert->MoveTo(alert->AlertPosition(alert->Frame().Width() + 1,
+ alert->Frame().Height() + 1));
+
tv->SetStylable(true);
+ tv->ResizeBy(200, 640);
add_section(tv, name, description);
add_section(tv, NULL, copyright);
add_section(tv, "authors", authors);
@@ -123,10 +130,5 @@ void nsbeos_about(struct gui_window *gui)
add_section(tv, "documenters", documenters);
add_section(tv, url_label, url);
- // make space for controls
- alert->ResizeBy(200, 500);
- alert->MoveTo(alert->AlertPosition(alert->Frame().Width() + 1,
- alert->Frame().Height() + 1));
-
alert->Go(NULL);
}