Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tome
Tales of MajEyal
Commits
9b5c727d
Commit
9b5c727d
authored
13 years ago
by
dg
Browse files
Options
Downloads
Patches
Plain Diff
fix
git-svn-id:
http://svn.net-core.org/repos/t-engine4@4778
51575b47-30f0-44d4-a5cc-537603b46e54
parent
8bb6cc31
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
game/modules/tome/class/uiset/Minimalist.lua
+11
-10
11 additions, 10 deletions
game/modules/tome/class/uiset/Minimalist.lua
with
11 additions
and
10 deletions
game/modules/tome/class/uiset/Minimalist.lua
+
11
−
10
View file @
9b5c727d
...
...
@@ -237,12 +237,12 @@ function _M:activate()
self
.
hotkeys_display_text
:
setColumns
(
3
)
self
:
resizeIconsHotkeysToolbar
()
self
.
logdisplay
=
LogDisplay
.
new
(
0
,
self
.
map_h_stop
-
font_h
*
config
.
settings
.
tome
.
log_lines
-
16
,
(
game
.
w
)
/
2
,
font_h
*
config
.
settings
.
tome
.
log_lines
,
nil
,
font
,
size
,
nil
,
nil
)
self
.
logdisplay
=
LogDisplay
.
new
(
0
,
self
.
map_h_stop
-
font_h
*
config
.
settings
.
tome
.
log_lines
-
sep
[
7
]
,
(
game
.
w
)
/
2
,
font_h
*
config
.
settings
.
tome
.
log_lines
,
nil
,
font
,
size
,
nil
,
nil
)
self
.
logdisplay
.
resizeToLines
=
function
()
self
.
logdisplay
:
resize
(
0
,
self
.
map_h_stop
-
font_h
*
config
.
settings
.
tome
.
log_lines
-
16
,
(
game
.
w
)
/
2
,
font_h
*
config
.
settings
.
tome
.
log_lines
)
end
self
.
logdisplay
:
enableShadow
(
1
)
self
.
logdisplay
:
enableFading
(
config
.
settings
.
tome
.
log_fade
or
3
)
profile
.
chat
:
resize
(
0
+
(
game
.
w
)
/
2
,
self
.
map_h_stop
-
font_h
*
config
.
settings
.
tome
.
log_lines
-
16
,
(
game
.
w
)
/
2
,
font_h
*
config
.
settings
.
tome
.
log_lines
,
font
,
size
,
nil
,
nil
)
profile
.
chat
:
resize
(
0
+
(
game
.
w
)
/
2
,
self
.
map_h_stop
-
font_h
*
config
.
settings
.
tome
.
log_lines
-
sep
[
7
]
,
(
game
.
w
)
/
2
,
font_h
*
config
.
settings
.
tome
.
log_lines
,
font
,
size
,
nil
,
nil
)
profile
.
chat
.
resizeToLines
=
function
()
profile
.
chat
:
resize
(
0
+
(
game
.
w
)
/
2
,
self
.
map_h_stop
-
font_h
*
config
.
settings
.
tome
.
log_lines
-
16
,
(
game
.
w
)
/
2
,
font_h
*
config
.
settings
.
tome
.
log_lines
)
end
profile
.
chat
:
enableShadow
(
1
)
profile
.
chat
:
enableFading
(
config
.
settings
.
tome
.
log_fade
or
3
)
...
...
@@ -273,8 +273,9 @@ function _M:resizeIconsHotkeysToolbar()
local
h
=
52
if
config
.
settings
.
tome
.
hotkey_icons
then
h
=
(
4
+
config
.
settings
.
tome
.
hotkey_icons_size
)
*
config
.
settings
.
tome
.
hotkey_icons_rows
end
local
oldstop
=
self
.
map_h_stop
or
(
game
.
h
-
h
-
sep
[
7
])
self
.
map_h_stop
=
game
.
h
-
h
-
sep
[
7
]
local
oldstop
=
self
.
map_h_stop_up
or
(
game
.
h
-
h
)
self
.
map_h_stop
=
game
.
h
-
h
self
.
map_h_stop_up
=
game
.
h
-
h
-
sep
[
7
]
self
.
hotkeys_display_icons
=
HotkeysIconsDisplay
.
new
(
nil
,
0
,
game
.
h
-
h
,
game
.
w
,
h
,
"/data/gfx/ui/hotkeys/back.png"
,
self
.
init_font_mono
,
self
.
init_size_mono
,
config
.
settings
.
tome
.
hotkey_icons_size
,
config
.
settings
.
tome
.
hotkey_icons_size
)
self
.
hotkeys_display_icons
:
enableShadow
(
0
.
6
)
...
...
@@ -282,16 +283,16 @@ function _M:resizeIconsHotkeysToolbar()
if
self
.
no_ui
then
self
.
map_h_stop
=
game
.
h
game
:
resizeMapViewport
(
game
.
w
,
self
.
map_h_stop
)
self
.
logdisplay
.
display_y
=
self
.
logdisplay
.
display_y
+
self
.
map_h_stop
-
oldstop
profile
.
chat
.
display_y
=
profile
.
chat
.
display_y
+
self
.
map_h_stop
-
oldstop
self
.
logdisplay
.
display_y
=
self
.
logdisplay
.
display_y
+
self
.
map_h_stop
_up
-
oldstop
profile
.
chat
.
display_y
=
profile
.
chat
.
display_y
+
self
.
map_h_stop
_up
-
oldstop
game
:
setupMouse
()
return
end
if
game
.
inited
then
game
:
resizeMapViewport
(
game
.
w
,
self
.
map_h_stop
)
self
.
logdisplay
.
display_y
=
self
.
logdisplay
.
display_y
+
self
.
map_h_stop
-
oldstop
profile
.
chat
.
display_y
=
profile
.
chat
.
display_y
+
self
.
map_h_stop
-
oldstop
self
.
logdisplay
.
display_y
=
self
.
logdisplay
.
display_y
+
self
.
map_h_stop
_up
-
oldstop
profile
.
chat
.
display_y
=
profile
.
chat
.
display_y
+
self
.
map_h_stop
_up
-
oldstop
game
:
setupMouse
()
end
...
...
@@ -1193,8 +1194,8 @@ function _M:display(nb_keyframes)
self
.
hotkeys_display
:
toScreen
()
end
sep
[
1
]:
toScreenFull
(
0
,
self
.
map_h_stop
,
game
.
w
,
sep
[
7
],
sep
[
2
],
sep
[
3
])
sep_vines
[
1
]:
toScreenFull
(
0
,
self
.
map_h_stop
-
3
,
game
.
w
,
sep_vines
[
7
],
sep_vines
[
2
],
sep_vines
[
3
])
sep
[
1
]:
toScreenFull
(
0
,
self
.
map_h_stop
_up
,
game
.
w
,
sep
[
7
],
sep
[
2
],
sep
[
3
])
sep_vines
[
1
]:
toScreenFull
(
0
,
self
.
map_h_stop
_up
-
3
,
game
.
w
,
sep_vines
[
7
],
sep_vines
[
2
],
sep_vines
[
3
])
end
function
_M
:
setupMouse
(
mouse
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment