Commit c1a31641 authored by Khalid Abu Shawarib's avatar Khalid Abu Shawarib

icons: Make navigation arrows direction-neutral

This corrects arrow directions in RTL.
parent a2fcaac6
...@@ -16,7 +16,9 @@ ...@@ -16,7 +16,9 @@
<file compressed="true" alias="leftright-bg.svg">resources/assets/leftright-bg.svg</file> <file compressed="true" alias="leftright-bg.svg">resources/assets/leftright-bg.svg</file>
</gresource> </gresource>
<gresource prefix="/org/gnome/Tour/icons/scalable/actions"> <gresource prefix="/org/gnome/Tour/icons/scalable/actions">
<file compressed="true" alias="left-large-symbolic.svg">resources/left-large-symbolic.svg</file> <file compressed="true" alias="prev-large-symbolic.svg">resources/left-large-symbolic.svg</file>
<file compressed="true" alias="right-large-symbolic.svg">resources/right-large-symbolic.svg</file> <file compressed="true" alias="prev-large-symbolic-rtl.svg">resources/right-large-symbolic.svg</file>
<file compressed="true" alias="next-large-symbolic.svg">resources/right-large-symbolic.svg</file>
<file compressed="true" alias="next-large-symbolic-rtl.svg">resources/left-large-symbolic.svg</file>
</gresource> </gresource>
</gresources> </gresources>
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<child type="overlay"> <child type="overlay">
<object class="GtkButton" id="previous_btn"> <object class="GtkButton" id="previous_btn">
<property name="margin-start">12</property> <property name="margin-start">12</property>
<property name="icon-name">left-large-symbolic</property> <property name="icon-name">prev-large-symbolic</property>
<property name="halign">start</property> <property name="halign">start</property>
<property name="valign">center</property> <property name="valign">center</property>
<property name="action-name">win.previous-page</property> <property name="action-name">win.previous-page</property>
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
<child type="overlay"> <child type="overlay">
<object class="GtkButton" id="next_btn"> <object class="GtkButton" id="next_btn">
<property name="margin-end">12</property> <property name="margin-end">12</property>
<property name="icon-name">right-large-symbolic</property> <property name="icon-name">next-large-symbolic</property>
<property name="halign">end</property> <property name="halign">end</property>
<property name="valign">center</property> <property name="valign">center</property>
<property name="action-name">win.next-page</property> <property name="action-name">win.next-page</property>
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
<child type="overlay"> <child type="overlay">
<object class="GtkButton" id="start_btn"> <object class="GtkButton" id="start_btn">
<property name="margin-end">12</property> <property name="margin-end">12</property>
<property name="icon-name">right-large-symbolic</property> <property name="icon-name">next-large-symbolic</property>
<property name="halign">end</property> <property name="halign">end</property>
<property name="valign">center</property> <property name="valign">center</property>
<property name="action-name">win.start-tour</property> <property name="action-name">win.start-tour</property>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment