Browse Source
Merge in DESIGN/design from ~HADES/design:release/10.0 to release/10.0 * commit '352edc342e14313eb7d9849ba3178dc192e88a29': REPORT-47438 判断跟随自主界面的条件再优化补充下 REPORT-47438 设计器弹窗部分弹窗不跟随主屏位置 REPORT-47438 设计器弹窗部分弹窗不跟随主屏位置 REPORT-47438 设计器弹窗在多屏情况下部分弹窗显示在另一块屏幕feature/big-screen
Hades
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