implemented global skin to be rendered after action has been executed
This commit is contained in:
parent
ffe720105c
commit
fbcfbc32ba
1 changed files with 5 additions and 0 deletions
|
@ -293,6 +293,11 @@ public class RequestEvaluator implements Runnable {
|
|||
try {
|
||||
localrtx.timer.beginEvent (requestPath+" execute");
|
||||
current.doIndirectCall (evaluator, current, action.getFunctionName (), new ESValue[0]);
|
||||
if (res.mainSkin != null) {
|
||||
Skin mainSkin = getSkin (null, res.mainSkin);
|
||||
if (mainSkin != null)
|
||||
mainSkin.render (this, null, null);
|
||||
}
|
||||
localrtx.timer.endEvent (requestPath+" execute");
|
||||
} catch (RedirectException redirect) {
|
||||
res.redirect = redirect.getMessage ();
|
||||
|
|
Loading…
Add table
Reference in a new issue