1. 09 4月, 2020 1 次提交
  2. 08 4月, 2020 5 次提交
  3. 05 4月, 2020 4 次提交
  4. 04 4月, 2020 2 次提交
  5. 03 4月, 2020 2 次提交
  6. 02 4月, 2020 1 次提交
  7. 01 4月, 2020 1 次提交
    • J
      libobs: Fix macOS 10.15 hotkey crash (temporary) · d002345a
      jp9000 提交于
      On 10.15, if a user activates secure input of some sort, the hotkey code
      will begin to crash inside of any Apple function related to hotkeys,
      even after secure input has ended.  This does not appear to be the fault
      of OBS; the reason to this is still as of yet unknown, but is suspected
      to be a bug inside of Apple code that's a new regression as of 10.15.
      
      So for the time being as a temporary solution to the crash, simply
      disable external hotkey support once secure input has been detected.
      
      Because of this issue, the hotkey code should probably be replaced by a
      different method of tracking hotkeys, perhaps InstallEventHandler for
      example.  This commit is little more than a bandaid to the crash.
      d002345a
  8. 29 3月, 2020 2 次提交
  9. 28 3月, 2020 9 次提交
  10. 27 3月, 2020 1 次提交
  11. 26 3月, 2020 1 次提交
    • J
      UI: Fix text handling for dialogs · 36e2a9fa
      jpark37 提交于
      Signal only needs to be connected once, not every keystroke.
      
      Also commit data only when text widget focus is lost to fix cursor
      moving to the end of the string after every keystroke.
      36e2a9fa
  12. 25 3月, 2020 1 次提交
  13. 24 3月, 2020 5 次提交
  14. 23 3月, 2020 4 次提交
  15. 22 3月, 2020 1 次提交
    • V
      UI: Set correct window title for fullscreen projector · 62c7eb48
      VodBox 提交于
      Before this change, opening up a fullscreen projector would have the
      wrong window title (Windowed Projector). This was because the call to
      update the window title was called before a monitor is set, and the
      title is determined by whether a monitor is set.
      
      This change moves the update title call to after the geometry or monitor
      gets set, ensuring the window title is correct.
      62c7eb48