mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 02:03:58 +01:00
commit
fa1dd4d0cf
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -98,6 +98,11 @@ interface IDefaultSettings {
|
|||||||
*/
|
*/
|
||||||
SuppressBladeburnerPopup: boolean;
|
SuppressBladeburnerPopup: boolean;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether the user should be displayed a popup message on stock market actions.
|
||||||
|
*/
|
||||||
|
SuppressTIXPopup: boolean;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Theme colors
|
* Theme colors
|
||||||
*/
|
*/
|
||||||
@ -180,6 +185,7 @@ export const defaultSettings: IDefaultSettings = {
|
|||||||
SuppressMessages: false,
|
SuppressMessages: false,
|
||||||
SuppressTravelConfirmation: false,
|
SuppressTravelConfirmation: false,
|
||||||
SuppressBladeburnerPopup: false,
|
SuppressBladeburnerPopup: false,
|
||||||
|
SuppressTIXPopup: false,
|
||||||
|
|
||||||
theme: {
|
theme: {
|
||||||
primarylight: "#0f0",
|
primarylight: "#0f0",
|
||||||
@ -244,6 +250,7 @@ export const Settings: ISettings & ISelfInitializer & ISelfLoading = {
|
|||||||
SuppressMessages: defaultSettings.SuppressMessages,
|
SuppressMessages: defaultSettings.SuppressMessages,
|
||||||
SuppressTravelConfirmation: defaultSettings.SuppressTravelConfirmation,
|
SuppressTravelConfirmation: defaultSettings.SuppressTravelConfirmation,
|
||||||
SuppressBladeburnerPopup: defaultSettings.SuppressBladeburnerPopup,
|
SuppressBladeburnerPopup: defaultSettings.SuppressBladeburnerPopup,
|
||||||
|
SuppressTIXPopup: defaultSettings.SuppressTIXPopup,
|
||||||
MonacoTheme: "monokai",
|
MonacoTheme: "monokai",
|
||||||
MonacoInsertSpaces: false,
|
MonacoInsertSpaces: false,
|
||||||
MonacoFontSize: 20,
|
MonacoFontSize: 20,
|
||||||
|
@ -159,7 +159,7 @@ function LogWindow(props: IProps): React.ReactElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Draggable bounds="body" handle=".drag">
|
<Draggable handle=".drag">
|
||||||
<Paper
|
<Paper
|
||||||
style={{
|
style={{
|
||||||
display: "flex",
|
display: "flex",
|
||||||
|
Loading…
Reference in New Issue
Block a user