Browse Source
* commit '6d86eb162d869e90d18f41e19660068b8ff84fbd': REPORT-47438 判断跟随自主界面的条件再优化补充下 REPORT-47438 设计器弹窗部分弹窗不跟随主屏位置 REPORT-47438 设计器弹窗部分弹窗不跟随主屏位置 REPORT-47438 设计器弹窗在多屏情况下部分弹窗显示在另一块屏幕bugfix/10.0
superman
4 years ago
8 changed files with 41 additions and 4 deletions
@ -0,0 +1,21 @@
|
||||
package com.fr.design.plugin; |
||||
|
||||
import com.fr.design.dialog.UIDialog; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 10.0 |
||||
* Created by hades on 2021/3/8 |
||||
*/ |
||||
public class DesignerPluginContext { |
||||
|
||||
private static UIDialog DIALOG; |
||||
|
||||
public static UIDialog getPluginDialog() { |
||||
return DIALOG; |
||||
} |
||||
|
||||
public static void setPluginDialog(UIDialog pluginDialog) { |
||||
DesignerPluginContext.DIALOG = pluginDialog; |
||||
} |
||||
} |
Loading…
Reference in new issue