diff options
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 2 | ||||
| -rw-r--r-- | pages/options.coffee | 1 | ||||
| -rw-r--r-- | pages/options.css | 2 | 
3 files changed, 2 insertions, 3 deletions
| diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index 8000a9ec..7ad75514 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -161,7 +161,7 @@ initializePreDomReady = ->      # from the former.      return if sender.tab and not sender.tab.url.startsWith 'chrome-extension://'      # These requests are delivered to the options page, but there are no handlers there. -    return if request.handler in [ "registerFrame", "frameFocused", "unregisterFrame" ] +    return if request.handler in [ "registerFrame", "frameFocused", "unregisterFrame", "setIcon" ]      shouldHandleRequest = isEnabledForUrl      # We always handle the message if it's one of these listed message types.      shouldHandleRequest ||= request.name in [ "executePageCommand", "checkEnabledAfterURLChange" ] diff --git a/pages/options.coffee b/pages/options.coffee index 0d7106fa..93b0be11 100644 --- a/pages/options.coffee +++ b/pages/options.coffee @@ -263,7 +263,6 @@ initOptionsPage = ->      searchEngines: TextOption      searchUrl: NonEmptyTextOption      userDefinedLinkHintCss: TextOption -    omniSearchWeight: NumberOption    # Populate options. The constructor adds each new object to "Option.all".    for name, type of options diff --git a/pages/options.css b/pages/options.css index ffb348c6..745b655c 100644 --- a/pages/options.css +++ b/pages/options.css @@ -107,7 +107,7 @@ input#linkHintNumbers {  input#linkHintCharacters {    width: 100%;  } -input#scrollStepSize, input#omniSearchWeight { +input#scrollStepSize {    width: 50px;    margin-right: 3px;    padding-left: 3px; | 
