Skip to content

Commit

Permalink
Version 0.1.1
Browse files Browse the repository at this point in the history
Fixed Virtual Devices page unable to scroll to bottom
Fixed menu string "Force Stop" -> "Force stop"
  • Loading branch information
yezhiyi9670 committed Aug 6, 2022
1 parent 0b3581a commit 959c2dc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
Fast creation options are COMING SOON™
</wcl-void>
</div>
<div class="avds-vds-contents" wcl-state="content">
<div class="wcl-container-full avds-vds-contents" wcl-state="content">
<h3>Installed Devices</h3>
<ul class="mdui-list avds-avd-list">
</ul>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "avd-launcher",
"version": "0.1.0",
"version": "0.1.1",
"main": "main.js",
"icon": "./icon/launcher.png",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion static/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ body {
height: calc(100%);
overflow-y: auto;
}
.wcl-page-containers .mdui-container {
.wcl-page-containers .mdui-container,
.wcl-page-containers .wcl-container-full {
margin-bottom: 72px;
}
.wcl-page-containers {
Expand Down
2 changes: 1 addition & 1 deletion static/js/common/virtual-devices-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const child_process = require('child_process');
})
)
.append(
create_menu_item('Force Stop').addClass('avds-avd-menu-statable')
create_menu_item('Force stop').addClass('avds-avd-menu-statable')
.attr('wcl-state', 'on')
.disabled(!SettingsProvider.get('func_force_stop'))
.on('click', () => {
Expand Down

0 comments on commit 959c2dc

Please sign in to comment.