weston-dnd --help works
This commit is contained in:
committed by
Pekka Paalanen
parent
36bcf47054
commit
6fd10c6c6c
+9
-4
@@ -652,7 +652,14 @@ main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
struct display *d;
|
struct display *d;
|
||||||
struct dnd *dnd;
|
struct dnd *dnd;
|
||||||
int i;
|
int self_only = 0;
|
||||||
|
|
||||||
|
if (argc == 2 && !strcmp(argv[1], "--self-only"))
|
||||||
|
self_only = 1;
|
||||||
|
else if (argc > 1) {
|
||||||
|
printf("Usage: %s [OPTIONS]\n --self-only\n", argv[0]);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
d = display_create(&argc, argv);
|
d = display_create(&argc, argv);
|
||||||
if (d == NULL) {
|
if (d == NULL) {
|
||||||
@@ -661,9 +668,7 @@ main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
dnd = dnd_create(d);
|
dnd = dnd_create(d);
|
||||||
|
if (self_only)
|
||||||
for (i = 1; i < argc; i++)
|
|
||||||
if (strcmp("--self-only", argv[i]) == 0)
|
|
||||||
dnd->self_only = 1;
|
dnd->self_only = 1;
|
||||||
|
|
||||||
display_run(d);
|
display_run(d);
|
||||||
|
|||||||
Reference in New Issue
Block a user