gtk: Fixes warnings about obsolete components (#4049)
* gtk: Fixes warnings about obsolete components * remove wrong using
This commit is contained in:
parent
f23b2878cc
commit
752b93d3b7
2 changed files with 13 additions and 12 deletions
|
@ -46,7 +46,7 @@ namespace Ryujinx.Ui.Windows
|
|||
SetDefaultSize(740, 400);
|
||||
SetPosition(WindowPosition.Center);
|
||||
|
||||
VBox vbox = new VBox(false, 0);
|
||||
Box vbox = new(Orientation.Vertical, 0);
|
||||
Add(vbox);
|
||||
|
||||
ScrolledWindow scrolledWindow = new ScrolledWindow
|
||||
|
@ -55,7 +55,7 @@ namespace Ryujinx.Ui.Windows
|
|||
};
|
||||
scrolledWindow.SetPolicy(PolicyType.Automatic, PolicyType.Automatic);
|
||||
|
||||
HBox hbox = new HBox(false, 0);
|
||||
Box hbox = new(Orientation.Horizontal, 0);
|
||||
|
||||
Button chooseButton = new Button()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue