Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
fingerterm
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
2
Issues
2
List
Boards
Labels
Milestones
Merge Requests
3
Merge Requests
3
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
mer-core
fingerterm
Commits
20947295
Commit
20947295
authored
Mar 02, 2017
by
Pekka Vuorela
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use var properties instead of obsolete variant
parent
d9596bcc
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
7 deletions
+8
-7
qml/Keyboard.qml
qml/Keyboard.qml
+5
-4
qml/LayoutWindow.qml
qml/LayoutWindow.qml
+1
-1
qml/Lineview.qml
qml/Lineview.qml
+1
-1
qml/UrlWindow.qml
qml/UrlWindow.qml
+1
-1
No files found.
qml/Keyboard.qml
View file @
20947295
...
...
@@ -23,9 +23,9 @@ Item {
id
:
keyboard
property
int
keyModifiers
property
var
iant
resetSticky
:
0
property
var
iant
currentStickyPressed
:
null
property
var
iant
currentKeyPressed
:
0
property
var
resetSticky
:
0
property
var
currentStickyPressed
:
null
property
var
currentKeyPressed
:
0
property
string
keyFgColor
:
"
#ffffff
"
property
string
keyBgColor
:
"
#202020
"
...
...
@@ -59,10 +59,11 @@ Item {
spacing
:
keyboard
.
keyspacing
Repeater
{
id
:
colRepeater
property
int
rowIndex
:
index
model
:
keyLoader
.
vkbColumns
()
delegate
:
Key
{
property
var
iant
keydata
:
keyLoader
.
keyAt
(
colRepeater
.
rowIndex
,
index
)
property
var
keydata
:
keyLoader
.
keyAt
(
colRepeater
.
rowIndex
,
index
)
label
:
keydata
[
0
]
code
:
keydata
[
1
]
label_alt
:
keydata
[
2
]
...
...
qml/LayoutWindow.qml
View file @
20947295
...
...
@@ -22,7 +22,7 @@ import QtQuick 2.0
PopupWindow
{
id
:
layoutWindow
property
var
iant
layouts
:
[
""
]
property
var
layouts
:
[
""
]
Component
{
id
:
listDelegate
...
...
qml/Lineview.qml
View file @
20947295
...
...
@@ -23,7 +23,7 @@ import FingerTerm 1.0
Rectangle
{
id
:
lineView
property
var
iant
lines
:
[
""
]
property
var
lines
:
[
""
]
property
int
fontPointSize
:
util
.
fontSize
property
int
cursorX
:
1
property
int
cursorWidth
:
10
...
...
qml/UrlWindow.qml
View file @
20947295
...
...
@@ -22,7 +22,7 @@ import QtQuick 2.0
PopupWindow
{
id
:
urlWindow
property
var
iant
urls
:
[
""
]
property
var
urls
:
[
""
]
Component
{
id
:
listDelegate
...
...
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