mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2026-09-23 21:25:41 +00:00
do not stack new widgets, related #219
This commit is contained in:
@@ -58,8 +58,8 @@ export default defineComponent({
|
||||
props.config.wmFlags = ['invisible-on-blur']
|
||||
props.config.anchor = {
|
||||
pos: 'tc',
|
||||
x: 50,
|
||||
y: 10
|
||||
x: (Math.random() * (60 - 40) + 40),
|
||||
y: (Math.random() * (15 - 5) + 5)
|
||||
}
|
||||
props.config.images = [{
|
||||
id: 1, url: 'syndicate.jpg'
|
||||
|
||||
@@ -64,8 +64,8 @@ export default defineComponent({
|
||||
props.config.wmFlags = ['invisible-on-blur']
|
||||
props.config.anchor = {
|
||||
pos: 'tl',
|
||||
x: 30,
|
||||
y: 30
|
||||
x: (Math.random() * (40 - 20) + 20),
|
||||
y: (Math.random() * (40 - 20) + 20)
|
||||
}
|
||||
props.config.entries = [{
|
||||
id: 1, text: 'Currency'
|
||||
|
||||
@@ -34,8 +34,8 @@ export default defineComponent({
|
||||
props.config.wmFlags = []
|
||||
props.config.anchor = {
|
||||
pos: 'cc',
|
||||
x: 50,
|
||||
y: 50
|
||||
x: (Math.random() * (60 - 40) + 40),
|
||||
y: (Math.random() * (60 - 40) + 40)
|
||||
}
|
||||
wm.show(props.config.wmId)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user