Skip to content

Commit b6e0a9b

Browse files
committed
Fix wxpython navigation bar images - Issue cztomczak#221.
1 parent 42c5964 commit b6e0a9b

File tree

7 files changed

+3
-3
lines changed

7 files changed

+3
-3
lines changed

cefpython/wx/chromectrl.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ def __init__(self, parent, *args, **kwargs):
6767

6868
def _InitComponents(self):
6969
self.backBtn = buttons.GenBitmapButton(self, -1,
70-
wx.Bitmap(os.path.join(self.bitmapDir, "Arrow Left.png"),
70+
wx.Bitmap(os.path.join(self.bitmapDir, "back.png"),
7171
wx.BITMAP_TYPE_PNG), style=wx.BORDER_NONE)
7272
self.forwardBtn = buttons.GenBitmapButton(self, -1,
73-
wx.Bitmap(os.path.join(self.bitmapDir, "Arrow Right.png"),
73+
wx.Bitmap(os.path.join(self.bitmapDir, "forward.png"),
7474
wx.BITMAP_TYPE_PNG), style=wx.BORDER_NONE)
7575
self.reloadBtn = buttons.GenBitmapButton(self, -1,
76-
wx.Bitmap(os.path.join(self.bitmapDir, "Button Load.png"),
76+
wx.Bitmap(os.path.join(self.bitmapDir, "reload_page.png"),
7777
wx.BITMAP_TYPE_PNG), style=wx.BORDER_NONE)
7878

7979
self.url = wx.TextCtrl(self, id=-1, style=0)

cefpython/wx/images/Arrow Left.png

-3.71 KB
Binary file not shown.
-3.73 KB
Binary file not shown.
-4.77 KB
Binary file not shown.

cefpython/wx/images/back.png

1.32 KB
Loading

cefpython/wx/images/forward.png

1.28 KB
Loading
1.39 KB
Loading

0 commit comments

Comments
 (0)