Skip to content

Commit

Permalink
Add Windowed Mode to Gamescope Options (#3623)
Browse files Browse the repository at this point in the history
* Add windowed option for Gamescope

* Small order change
  • Loading branch information
MuraPura authored Mar 18, 2024
1 parent f955f61 commit c674e04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,8 @@
"nis": "NVIDIA Image Scale (NIS)",
"stretch": "Stretch Image",
"upscaleHeight": "Upscale Height",
"upscaleWidth": "Upscale Width"
"upscaleWidth": "Upscale Width",
"windowed": "Windowed"
},
"quote-args-with-spaces": "Warning: Make sure to quote args with spaces! E.g.: \"path/with spaces/\"",
"wrapper": {
Expand Down
4 changes: 4 additions & 0 deletions src/frontend/screens/Settings/components/Gamescope.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ const Gamescope = () => {
{
name: t('options.gamescope.borderless', 'Borderless'),
value: 'borderless'
},
{
name: t('options.gamescope.windowed', 'Windowed'),
value: 'windowed'
}
]

Expand Down

0 comments on commit c674e04

Please sign in to comment.