👍[Update] config ENABLE_OSC_ERROR_LOGを追加
This commit is contained in:
10
config.py
10
config.py
@@ -388,6 +388,15 @@ class Config:
|
|||||||
if type(value) is bool:
|
if type(value) is bool:
|
||||||
self._ENABLE_OSC = value
|
self._ENABLE_OSC = value
|
||||||
|
|
||||||
|
@property
|
||||||
|
def ENABLE_OSC_ERROR_LOG(self):
|
||||||
|
return self._ENABLE_OSC_ERROR_LOG
|
||||||
|
|
||||||
|
@ENABLE_OSC_ERROR_LOG.setter
|
||||||
|
def ENABLE_OSC_ERROR_LOG(self, value):
|
||||||
|
if type(value) is bool:
|
||||||
|
self._ENABLE_OSC_ERROR_LOG = value
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def UPDATE_FLAG(self):
|
def UPDATE_FLAG(self):
|
||||||
return self._UPDATE_FLAG
|
return self._UPDATE_FLAG
|
||||||
@@ -507,6 +516,7 @@ class Config:
|
|||||||
self._ENABLE_AUTO_CLEAR_MESSAGE_BOX = False
|
self._ENABLE_AUTO_CLEAR_MESSAGE_BOX = False
|
||||||
self._ENABLE_NOTICE_XSOVERLAY = False
|
self._ENABLE_NOTICE_XSOVERLAY = False
|
||||||
self._ENABLE_OSC = False
|
self._ENABLE_OSC = False
|
||||||
|
self._ENABLE_OSC_ERROR_LOG = True
|
||||||
self._UPDATE_FLAG = False
|
self._UPDATE_FLAG = False
|
||||||
self._GITHUB_URL = "https://api.github.com/repos/misyaguziya/VRCT/releases/latest"
|
self._GITHUB_URL = "https://api.github.com/repos/misyaguziya/VRCT/releases/latest"
|
||||||
# self._BREAK_KEYSYM_LIST = [
|
# self._BREAK_KEYSYM_LIST = [
|
||||||
|
|||||||
Reference in New Issue
Block a user