Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
RLG Maker
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Romain DELEAU
RLG Maker
Commits
06f4dce3
Commit
06f4dce3
authored
1 year ago
by
Romain DELEAU
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix editTrace color to #CE7B66
parent
7eda7b85
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
game-characters.component.ts
src/app/pieces/game-characters/game-characters.component.ts
+2
-2
No files found.
src/app/pieces/game-characters/game-characters.component.ts
View file @
06f4dce3
...
...
@@ -90,9 +90,9 @@ export class GameCharactersComponent implements OnInit {
editTrace
(
event
:
any
,
source
:
string
):
void
{
if
(
event
.
target
.
value
!=
''
)
{
this
.
scenario
.
traces
.
push
(
new
Trace
(
this
.
scenario
.
traces
.
length
,
'write'
,
undefined
,
undefined
,
source
,
'Characters'
,
'#
EAC19B
'
));
this
.
scenario
.
traces
.
push
(
new
Trace
(
this
.
scenario
.
traces
.
length
,
'write'
,
undefined
,
undefined
,
source
,
'Characters'
,
'#
CE7B66
'
));
}
else
{
this
.
scenario
.
traces
.
push
(
new
Trace
(
this
.
scenario
.
traces
.
length
,
'erase'
,
undefined
,
undefined
,
source
,
'Characters'
,
'#
EAC19B
'
));
this
.
scenario
.
traces
.
push
(
new
Trace
(
this
.
scenario
.
traces
.
length
,
'erase'
,
undefined
,
undefined
,
source
,
'Characters'
,
'#
CE7B66
'
));
}
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment