summaryrefslogtreecommitdiff
path: root/fluid/print_panel.fl
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2005-03-21 19:57:50 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2005-03-21 19:57:50 +0000
commit4afcc1762c71b63499200943e3a00a13ddd1a3ee (patch)
tree3c82b2f28756fe94b69987da1014db9ad1646c9d /fluid/print_panel.fl
parente2a04270b95e29629acfa9e293b93e549b2cbd75 (diff)
Fix order of output mode buttons...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4161 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/print_panel.fl')
-rw-r--r--fluid/print_panel.fl11
1 files changed, 5 insertions, 6 deletions
diff --git a/fluid/print_panel.fl b/fluid/print_panel.fl
index 1500d243f..7ce6b4856 100644
--- a/fluid/print_panel.fl
+++ b/fluid/print_panel.fl
@@ -235,17 +235,17 @@ print_update_status();} open
}
}
Fl_Group {} {
- label {Output Mode:}
+ label {Output Mode:} open
xywh {110 45 170 40} labelfont 1 align 4
} {
- Fl_Button {print_output_mode[0]} {
+ Fl_Button {print_output_mode[0]} {selected
image {pixmaps/print_color.xpm} xywh {110 45 30 40} type Radio box BORDER_BOX down_box BORDER_BOX value 1 color 7 selection_color 0
}
Fl_Button {print_output_mode[1]} {
- image {pixmaps/print_gray.xpm} xywh {200 45 30 40} type Radio box BORDER_BOX down_box BORDER_BOX color 7 selection_color 0
+ image {pixmaps/print_color.xpm} xywh {150 50 40 30} type Radio box BORDER_BOX down_box BORDER_BOX color 7 selection_color 0
}
Fl_Button {print_output_mode[2]} {
- image {pixmaps/print_color.xpm} xywh {150 50 40 30} type Radio box BORDER_BOX down_box BORDER_BOX color 7 selection_color 0
+ image {pixmaps/print_gray.xpm} xywh {200 45 30 40} type Radio box BORDER_BOX down_box BORDER_BOX color 7 selection_color 0
}
Fl_Button {print_output_mode[3]} {
image {pixmaps/print_gray.xpm} xywh {240 50 40 30} type Radio box BORDER_BOX down_box BORDER_BOX color 7 selection_color 0
@@ -355,8 +355,7 @@ print_page_size->value(val);
snprintf(name, sizeof(name), "%s/output_mode", printer);
fluid_prefs.get(name, val, 0);
-print_output_mode[val]->setonly();} {selected
- }
+print_output_mode[val]->setonly();} {}
}
comment {