Skip to content

Commit

Permalink
tgui fix (#13739)
Browse files Browse the repository at this point in the history
  • Loading branch information
NinjaPikachuska authored Jan 23, 2025
1 parent c814728 commit 3f8da62
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion tgui/packages/tgui-panel/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,13 @@ const setupApp = () => {
// Dispatch incoming messages as store actions
Byond.subscribe((type, payload) => store.dispatch({ type, payload }));

// Unhide the panel
Byond.winset('legacy_output_selector', {
left: 'output_browser',
});

// Resize the panel to match the non-browser output
Byond.winget('output').then((output) => {
Byond.winget('legacy_output_selector').then((output) => {
Byond.winset('browseroutput', {
'size': output.size,
});
Expand Down
4 changes: 2 additions & 2 deletions tgui/packages/tgui-panel/themes.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ export const setClientTheme = (name) => {
'rpanewindow.text-color': COLOR_DARK_TEXT,
'rpane.background-color': COLOR_DARK_BG,
'rpane.text-color': COLOR_DARK_TEXT,
'chat_panel.background-color': COLOR_DARK_BG,
'chat_panel.text-color': COLOR_DARK_TEXT,
'browseroutput.background-color': COLOR_DARK_BG,
'browseroutput.text-color': COLOR_DARK_TEXT,
'outputwindow.background-color': COLOR_DARK_BG,
'outputwindow.text-color': COLOR_DARK_TEXT,
'mainwindow.background-color': COLOR_DARK_BG,
Expand Down
4 changes: 2 additions & 2 deletions tgui/public/tgui-panel.bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3f8da62

Please sign in to comment.