mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
feat(MainWindow): auto answer is now more visible
This commit is contained in:
parent
1574c4bc9e
commit
effacd8831
3 changed files with 76 additions and 15 deletions
|
|
@ -1,12 +1,70 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="14px" height="14px" viewBox="0 0 14 14" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 40.3 (33839) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>auto_answer_active</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs></defs>
|
||||
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
||||
<g id="auto_answer_active" stroke="#828282">
|
||||
<path d="M0.797365543,2.49263511 C-0.109836641,5.04855335 1.161449,8.70129794 3.21892643,10.7501941 L3.26206927,10.7928576 C5.31909573,12.8413047 8.98804084,14.1072881 11.5537619,13.2038696 L13.5,10.6632204 L10.8490455,8.02362183 L8.42387683,10.0659313 L6.20750748,7.85910537 L6.16496594,7.81644186 L3.94889724,5.60961588 L5.99930947,3.19366387 L3.34940721,0.554364667 L0.797365543,2.49263511 L0.797365543,2.49263511 Z"></path>
|
||||
</g>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 16 16"
|
||||
version="1.1"
|
||||
id="svg12"
|
||||
sodipodi:docname="auto_answer.svg"
|
||||
inkscape:version="0.92.2 2405546, 2018-03-11">
|
||||
<metadata
|
||||
id="metadata16">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>auto_answer_active</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="985"
|
||||
id="namedview14"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.1071429"
|
||||
inkscape:cx="14.372881"
|
||||
inkscape:cy="11.180255"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="35"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg12" />
|
||||
<!-- Generator: Sketch 40.3 (33839) - http://www.bohemiancoding.com/sketch -->
|
||||
<title
|
||||
id="title2">auto_answer_active</title>
|
||||
<desc
|
||||
id="desc4">Created with Sketch.</desc>
|
||||
<defs
|
||||
id="defs6" />
|
||||
<g
|
||||
id="Symbols"
|
||||
style="fill:none;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
|
||||
transform="translate(1,1)">
|
||||
<g
|
||||
id="auto_answer_active"
|
||||
style="stroke:#fe5e00"
|
||||
class="color-i-stroke">
|
||||
<path
|
||||
d="M 0.79736554,2.4926351 C -0.10983664,5.0485533 1.161449,8.7012979 3.2189264,10.750194 l 0.043143,0.04266 c 2.0570264,2.048447 5.7259715,3.31443 8.2916926,2.411012 L 13.5,10.66322 10.849046,8.0236218 8.4238768,10.065931 6.2075075,7.8591054 6.1649659,7.8164419 3.9488972,5.6096159 5.9993095,3.1936639 3.3494072,0.55436467 Z"
|
||||
id="path8"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 1,013 B After Width: | Height: | Size: 2.3 KiB |
|
|
@ -127,7 +127,10 @@ ApplicationWindow {
|
|||
Text {
|
||||
clip: true
|
||||
color: MainWindowStyle.autoAnswerStatus.text.color
|
||||
font.pointSize: MainWindowStyle.autoAnswerStatus.text.pointSize
|
||||
font {
|
||||
bold: true
|
||||
pointSize: MainWindowStyle.autoAnswerStatus.text.pointSize
|
||||
}
|
||||
text: qsTr('autoAnswerStatus')
|
||||
visible: SettingsModel.autoAnswerStatus
|
||||
width: parent.width
|
||||
|
|
|
|||
|
|
@ -18,12 +18,12 @@ QtObject {
|
|||
}
|
||||
|
||||
property QtObject autoAnswerStatus: QtObject {
|
||||
property int iconSize: 13
|
||||
property int width: 24
|
||||
property int iconSize: 16
|
||||
property int width: 28
|
||||
|
||||
property QtObject text: QtObject {
|
||||
property int pointSize: Units.dp * 8
|
||||
property color color: Colors.g
|
||||
property color color: Colors.i
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue