aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ava/UI/Renderer
diff options
context:
space:
mode:
authorIsaac Marovitz <42140194+IsaacMarovitz@users.noreply.github.com>2024-01-13 00:42:42 +0000
committerGitHub <noreply@github.com>2024-01-13 01:42:42 +0100
commit1a45dc8df882e58e4280849541e4f3be94f0edb9 (patch)
tree6019d8398e4b45972d022875a31aa32af6acb6b2 /src/Ryujinx.Ava/UI/Renderer
parentf037fcba9a5713e68cadbbf8a823913943ac2626 (diff)
Ava UI: RTL Language Support (#5619)
* Add Hebrew locale files to ItemGroups * Align all windows RTL for testing This should be controlled with a binding that selects the appropriate layout based on current language * Update FlowDirection as Locale changes * Fix Settings NavigationViewItem FlowDirection * Fix remaining text * Fix input menu directionality * Fix RTL not rendering * Fix rebase errors
Diffstat (limited to 'src/Ryujinx.Ava/UI/Renderer')
-rw-r--r--src/Ryujinx.Ava/UI/Renderer/RendererHost.axaml9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Ryujinx.Ava/UI/Renderer/RendererHost.axaml b/src/Ryujinx.Ava/UI/Renderer/RendererHost.axaml
index bb96b10d..e0b586b4 100644
--- a/src/Ryujinx.Ava/UI/Renderer/RendererHost.axaml
+++ b/src/Ryujinx.Ava/UI/Renderer/RendererHost.axaml
@@ -1,11 +1,12 @@
-<UserControl
+<UserControl
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d"
- d:DesignWidth="800"
+ mc:Ignorable="d"
+ d:DesignWidth="800"
d:DesignHeight="450"
x:Class="Ryujinx.Ava.UI.Renderer.RendererHost"
+ FlowDirection="LeftToRight"
Focusable="True">
-</UserControl> \ No newline at end of file
+</UserControl>