Bump to version 68.7
This commit is contained in:
+2
-2
@@ -71,7 +71,7 @@ export const Overview = class {
|
||||
|
||||
this._signalsHandler.add([
|
||||
SETTINGS,
|
||||
['changed::panel-sizes'],
|
||||
['changed::stockgs-keep-dash', 'changed::panel-sizes'],
|
||||
() => this.toggleDash(),
|
||||
])
|
||||
}
|
||||
@@ -91,7 +91,7 @@ export const Overview = class {
|
||||
|
||||
toggleDash(visible) {
|
||||
if (visible === undefined) {
|
||||
visible = false
|
||||
visible = SETTINGS.get_boolean('stockgs-keep-dash')
|
||||
}
|
||||
|
||||
let visibilityFunc = visible ? 'show' : 'hide'
|
||||
|
||||
@@ -1774,6 +1774,13 @@ const Preferences = class {
|
||||
PanelSettings.getPanelLength(this._settings, this._currentMonitorIndex),
|
||||
)
|
||||
|
||||
this._settings.bind(
|
||||
'stockgs-keep-dash',
|
||||
this._builder.get_object('stockgs_dash_switch'),
|
||||
'active',
|
||||
Gio.SettingsBindFlags.DEFAULT,
|
||||
)
|
||||
|
||||
this._settings.bind(
|
||||
'stockgs-keep-top-panel',
|
||||
this._builder.get_object('stockgs_top_panel_switch'),
|
||||
|
||||
+1
-1
@@ -137,7 +137,7 @@
|
||||
|
||||
.preview-container,
|
||||
#preview-menu {
|
||||
border-radius: 10px;
|
||||
border-radius: 15px;
|
||||
}
|
||||
|
||||
/* border radius, grrr no css variables in ST */
|
||||
|
||||
@@ -48,7 +48,7 @@ const MIN_DIMENSION = 100
|
||||
const FOCUSED_COLOR_OFFSET = 24
|
||||
const FADE_SIZE = 36
|
||||
const PEEK_INDEX_PROP = '_dtpPeekInitialIndex'
|
||||
const MARGIN_SIZE = 8
|
||||
const MARGIN_SIZE = 4
|
||||
|
||||
const SHOW_WINDOW_PREVIEWS_TIMEOUT = 400
|
||||
const LEAVE_TIMEOUT = 250
|
||||
|
||||
Reference in New Issue
Block a user