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;
|
||||
|
||||
/**
|
||||
* Whether the user should be displayed a popup message on stock market actions.
|
||||
*/
|
||||
SuppressTIXPopup: boolean;
|
||||
|
||||
/*
|
||||
* Theme colors
|
||||
*/
|
||||
@ -180,6 +185,7 @@ export const defaultSettings: IDefaultSettings = {
|
||||
SuppressMessages: false,
|
||||
SuppressTravelConfirmation: false,
|
||||
SuppressBladeburnerPopup: false,
|
||||
SuppressTIXPopup: false,
|
||||
|
||||
theme: {
|
||||
primarylight: "#0f0",
|
||||
@ -244,6 +250,7 @@ export const Settings: ISettings & ISelfInitializer & ISelfLoading = {
|
||||
SuppressMessages: defaultSettings.SuppressMessages,
|
||||
SuppressTravelConfirmation: defaultSettings.SuppressTravelConfirmation,
|
||||
SuppressBladeburnerPopup: defaultSettings.SuppressBladeburnerPopup,
|
||||
SuppressTIXPopup: defaultSettings.SuppressTIXPopup,
|
||||
MonacoTheme: "monokai",
|
||||
MonacoInsertSpaces: false,
|
||||
MonacoFontSize: 20,
|
||||
|
@ -159,7 +159,7 @@ function LogWindow(props: IProps): React.ReactElement {
|
||||
}
|
||||
|
||||
return (
|
||||
<Draggable bounds="body" handle=".drag">
|
||||
<Draggable handle=".drag">
|
||||
<Paper
|
||||
style={{
|
||||
display: "flex",
|
||||
|
Loading…
Reference in New Issue
Block a user