diff --git a/app/gui/main.qml b/app/gui/main.qml
index f6260347..7dc50d7f 100644
--- a/app/gui/main.qml
+++ b/app/gui/main.qml
@@ -46,7 +46,7 @@ ApplicationWindow {
// Only make the button visible if the user has navigated somewhere.
visible: stackView.depth > 1
- icon.source: "qrc:/res/arrow_left.png"
+ icon.source: "qrc:/res/arrow_left.svg"
onClicked: stackView.pop()
Menu {
@@ -67,7 +67,7 @@ ApplicationWindow {
}
ToolButton {
- icon.source: "qrc:/res/question_mark.png"
+ icon.source: "qrc:/res/question_mark.svg"
// TODO need to make sure browser is brought to foreground.
onClicked: Qt.openUrlExternally("https://github.com/moonlight-stream/moonlight-docs/wiki/Setup-Guide");
@@ -91,7 +91,7 @@ ApplicationWindow {
}
ToolButton {
- icon.source: "qrc:/res/settings.png"
+ icon.source: "qrc:/res/settings.svg"
onClicked: navigateTo("qrc:/gui/SettingsView.qml", "Settings")
Menu {
diff --git a/app/res/arrow_left.png b/app/res/arrow_left.png
deleted file mode 100644
index 6454cbd2..00000000
Binary files a/app/res/arrow_left.png and /dev/null differ
diff --git a/app/res/arrow_left.svg b/app/res/arrow_left.svg
new file mode 100644
index 00000000..6263a7fc
--- /dev/null
+++ b/app/res/arrow_left.svg
@@ -0,0 +1,4 @@
+
diff --git a/app/res/question_mark.png b/app/res/question_mark.png
deleted file mode 100644
index a701cb88..00000000
Binary files a/app/res/question_mark.png and /dev/null differ
diff --git a/app/res/question_mark.svg b/app/res/question_mark.svg
new file mode 100644
index 00000000..a5b615c3
--- /dev/null
+++ b/app/res/question_mark.svg
@@ -0,0 +1,5 @@
+
+
+
\ No newline at end of file
diff --git a/app/res/settings.png b/app/res/settings.png
deleted file mode 100644
index 235a319d..00000000
Binary files a/app/res/settings.png and /dev/null differ
diff --git a/app/res/settings.svg b/app/res/settings.svg
new file mode 100644
index 00000000..f124d682
--- /dev/null
+++ b/app/res/settings.svg
@@ -0,0 +1,4 @@
+
diff --git a/app/resources.qrc b/app/resources.qrc
index 43e30909..7ff01a66 100644
--- a/app/resources.qrc
+++ b/app/resources.qrc
@@ -7,8 +7,8 @@
res/ic_tv_white_48px.svg
res/ic_add_to_queue_white_48px.svg
res/no_app_image.png
- res/settings.png
- res/question_mark.png
- res/arrow_left.png
+ res/settings.svg
+ res/arrow_left.svg
+ res/question_mark.svg