From db2ce6ecb7c70809adc85f752b6f1df1a515f86a Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 22 Oct 2019 19:49:09 -0700 Subject: [PATCH] change arrow characters --- samples/html2/webview_sample.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/html2/webview_sample.py b/samples/html2/webview_sample.py index abd268f4..bcf51fc1 100644 --- a/samples/html2/webview_sample.py +++ b/samples/html2/webview_sample.py @@ -71,12 +71,12 @@ class WebViewPanel(wx.Panel): self.Bind(wx.EVT_BUTTON, self.OnOpenButton, btn) btnSizer.Add(btn, 0, wx.EXPAND|wx.ALL, 2) - btn = wx.Button(self, -1, "⬅︎", style=wx.BU_EXACTFIT) + btn = wx.Button(self, -1, "◀︎", style=wx.BU_EXACTFIT) self.Bind(wx.EVT_BUTTON, self.OnPrevPageButton, btn) btnSizer.Add(btn, 0, wx.EXPAND|wx.ALL, 2) self.Bind(wx.EVT_UPDATE_UI, self.OnCheckCanGoBack, btn) - btn = wx.Button(self, -1, "➡︎", style=wx.BU_EXACTFIT) + btn = wx.Button(self, -1, "▶︎", style=wx.BU_EXACTFIT) self.Bind(wx.EVT_BUTTON, self.OnNextPageButton, btn) btnSizer.Add(btn, 0, wx.EXPAND|wx.ALL, 2) self.Bind(wx.EVT_UPDATE_UI, self.OnCheckCanGoForward, btn)