summaryrefslogtreecommitdiff
path: root/cut-n-paste-code
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>2000-08-25 23:12:32 +0000
committerGeorge Lebl <jirka@src.gnome.org>2000-08-25 23:12:32 +0000
commitcd9a5b2f499745630af92ade575cb5778c814c31 (patch)
tree8241b3752f3d88e96a7110d3d7ae9e3ea437a108 /cut-n-paste-code
parenta5f3c7df43027f43e05e5f90f18784c45ccf9737 (diff)
downloadnautilus-cd9a5b2f499745630af92ade575cb5778c814c31.tar.gz
Fix height issue in size_request and set the druid page height back to the
Fri Aug 25 18:13:09 2000 George Lebl <jirka@5z.com> * cut-n-paste-code/widgets/nautilus-druid/nautilus-druid-page-eazel.c, cut-n-paste-code/widgets/nautilus-druid/nautilus-druid.c (nautilus_druid_size_request): Fix height issue in size_request and set the druid page height back to the correct size (322 pixels) * src/nautilus-first-time-druid.c (user_level_selection_changed), (make_label_bold) (make_hbox_user_level_radio_button) (set_up_user_level_page): Partial arloyfication of the user level page. Not yet using NautilusLabel because that appears to be broken (or I'm using it wrong, will investigate).
Diffstat (limited to 'cut-n-paste-code')
-rw-r--r--cut-n-paste-code/widgets/nautilus-druid/nautilus-druid-page-eazel.c2
-rw-r--r--cut-n-paste-code/widgets/nautilus-druid/nautilus-druid.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/cut-n-paste-code/widgets/nautilus-druid/nautilus-druid-page-eazel.c b/cut-n-paste-code/widgets/nautilus-druid/nautilus-druid-page-eazel.c
index 2d4c035b3..6e142668b 100644
--- a/cut-n-paste-code/widgets/nautilus-druid/nautilus-druid-page-eazel.c
+++ b/cut-n-paste-code/widgets/nautilus-druid/nautilus-druid-page-eazel.c
@@ -69,7 +69,7 @@ static NautilusDruidPageClass *parent_class = NULL;
#define TITLE_Y 60.0
#define CONTENT_PADDING 15.0
#define DEFAULT_CONTENT_X 34.0
-#define DRUID_PAGE_HEIGHT 365
+#define DRUID_PAGE_HEIGHT 322
#define DRUID_PAGE_WIDTH 516
diff --git a/cut-n-paste-code/widgets/nautilus-druid/nautilus-druid.c b/cut-n-paste-code/widgets/nautilus-druid/nautilus-druid.c
index ce647aba1..c5ff60fee 100644
--- a/cut-n-paste-code/widgets/nautilus-druid/nautilus-druid.c
+++ b/cut-n-paste-code/widgets/nautilus-druid/nautilus-druid.c
@@ -285,6 +285,7 @@ nautilus_druid_size_request (GtkWidget *widget,
/* pick which is bigger, the buttons, or the NautilusDruidPages */
requisition->width = MAX (temp_width, requisition->width);
+ requisition->height += temp_height;
}
static void
nautilus_druid_size_allocate (GtkWidget *widget,