* in case we do not show the config window,
still distinguish between config page and config job git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25910 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -64,7 +64,13 @@ status_t PrintServerApp::async_thread(void* data)
|
|||||||
w->Go();
|
w->Go();
|
||||||
} else {
|
} else {
|
||||||
BMessage reply(*msg);
|
BMessage reply(*msg);
|
||||||
if (printer->ConfigurePage(reply) == B_OK)
|
status_t status = B_ERROR;
|
||||||
|
if (msg->what == PSRV_SHOW_PAGE_SETUP)
|
||||||
|
status = printer->ConfigurePage(reply);
|
||||||
|
else
|
||||||
|
status = printer->ConfigureJob(reply);
|
||||||
|
|
||||||
|
if (status == B_OK)
|
||||||
sender.SetReply(&reply);
|
sender.SetReply(&reply);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user