Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/SimpleCutMainFrame.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from controller.core import CoreController
import logging
import os
import webbrowser

import wx

Expand Down Expand Up @@ -159,8 +160,7 @@ def on_export_button_click(self, event):
return

def on_open_project_website_button_click(self, event):
# TODO: Implement ProjectWebBtnOnClick
pass
webbrowser.open("https://github.com/FishCat233/SimpleCutPy")

def on_clear_all_button_click(self, event):
self.core_controller.clear_all_files()
Expand Down
Loading