Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
566f7ec8
Commit
566f7ec8
authored
Mar 05, 2000
by
Gerd Moellmann
Browse files
(xm_manage_resizing): Rewritten.
parent
a17063b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
16 deletions
+12
-16
lwlib/ChangeLog
lwlib/ChangeLog
+11
-0
lwlib/lwlib-Xm.c
lwlib/lwlib-Xm.c
+1
-16
No files found.
lwlib/ChangeLog
View file @
566f7ec8
2000-03-05 Gerd Moellmann <gerd@gnu.org>
* lwlib-Xm.c (xm_manage_resizing): Rewritten.
* lwlib.c (lw_modify_all_widgets): Return non-zero if widget
tree was changed.
(merge_widget_value): Add parameter CHANGE_P. Set *CHANGE_P
to 1 if a change occurs.
* lwlib.h (lw_modify_all_widgets): Change prototype.
2000-03-04 Gerd Moellmann <gerd@gnu.org>
* xlwmenu.c (make_shadow_gcs): Use the widget's colormap instead
...
...
lwlib/lwlib-Xm.c
View file @
566f7ec8
...
...
@@ -1963,20 +1963,5 @@ xm_manage_resizing (w, flag)
Widget
w
;
Boolean
flag
;
{
if
(
flag
)
{
/* Enable the edit widget for resizing. */
Arg
al
[
1
];
XtSetArg
(
al
[
0
],
XtNallowShellResize
,
0
);
XtSetValues
(
w
,
al
,
1
);
}
else
{
/* Disable the edit widget from resizing. */
Arg
al
[
1
];
XtSetArg
(
al
[
0
],
XtNallowShellResize
,
0
);
XtSetValues
(
w
,
al
,
1
);
}
XtVaSetValues
(
w
,
XtNallowShellResize
,
flag
,
NULL
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment