Skip to content

Commit

Permalink
Even more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jp9000 committed Aug 14, 2020
1 parent 4a07e78 commit 77ab591
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion UI/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ if(NOT Qt5Widgets_FOUND)
endif()
endif()


include_directories(${FFMPEG_INCLUDE_DIRS})
include_directories(${CMAKE_CURRENT_BINARY_DIR})
include_directories(SYSTEM "obs-frontend-api")
Expand Down Expand Up @@ -362,7 +363,6 @@ set(obs_UI
forms/OBSUpdate.ui
forms/OBSRemux.ui
forms/OBSImporter.ui
forms/OBSAbout.ui
forms/OBSAbout.ui)

set(obs_QRC
Expand Down
1 change: 0 additions & 1 deletion UI/data/locale/en-US.ini
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,6 @@ NeedsRestart="OBS Studio needs to be restarted. Do you want to restart now?"
ContextBar.NoSelectedSource="No source selected"
ContextBar.ResetTransform="Reset Transform"
ContextBar.FitToCanvas="Fit to Canvas"
ContextBar.CloseContextToolbar="Close Context Toolbar"

# Context Bar Media Controls
ContextBar.MediaControls.PlayMedia="Play Media"
Expand Down
1 change: 0 additions & 1 deletion UI/data/themes/Rachni.qss
Original file line number Diff line number Diff line change
Expand Up @@ -1257,7 +1257,6 @@ OBSQTDisplay {
qproperty-displayBackgroundColor: rgb(35, 38, 41);
}


/* Preview/Program labels */

* [themeID="previewProgramLabels"] {
Expand Down
10 changes: 5 additions & 5 deletions UI/forms/OBSBasic.ui
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@
<widget class="OBSBasicStatusBar" name="statusbar"/>
<widget class="OBSDock" name="scenesDock">
<property name="features">
<set>QDockWidget::AllDockWidgetFeatures</set>
<set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
</property>
<property name="windowTitle">
<string>Basic.Main.Scenes</string>
Expand Down Expand Up @@ -742,7 +742,7 @@
</widget>
<widget class="OBSDock" name="sourcesDock">
<property name="features">
<set>QDockWidget::AllDockWidgetFeatures</set>
<set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
</property>
<property name="windowTitle">
<string>Basic.Main.Sources</string>
Expand Down Expand Up @@ -878,7 +878,7 @@
</widget>
<widget class="OBSDock" name="mixerDock">
<property name="features">
<set>QDockWidget::AllDockWidgetFeatures</set>
<set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
</property>
<property name="windowTitle">
<string>Mixer</string>
Expand Down Expand Up @@ -1018,7 +1018,7 @@
</widget>
<widget class="OBSDock" name="transitionsDock">
<property name="features">
<set>QDockWidget::AllDockWidgetFeatures</set>
<set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
</property>
<property name="windowTitle">
<string>Basic.SceneTransitions</string>
Expand Down Expand Up @@ -1179,7 +1179,7 @@
</widget>
<widget class="OBSDock" name="controlsDock">
<property name="features">
<set>QDockWidget::AllDockWidgetFeatures</set>
<set>QDockWidget::DockWidgetClosable|QDockWidget::DockWidgetMovable|QDockWidget::DockWidgetFloatable</set>
</property>
<property name="windowTitle">
<string>Basic.Main.Controls</string>
Expand Down
3 changes: 2 additions & 1 deletion UI/window-basic-main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2908,7 +2908,8 @@ void OBSBasic::UpdateContextBar()
strcmp(id, "coreaudio_input_capture") == 0 ||
strcmp(id, "coreaudio_output_capture") == 0 ||
strcmp(id, "pulse_input_capture") == 0 ||
strcmp(id, "pulse_output_capture") == 0) {
strcmp(id, "pulse_output_capture") == 0 ||
strcmp(id, "alsa_input_capture") == 0 ||
AudioCaptureToolbar *c =
new AudioCaptureToolbar(ui->emptySpace, source);
c->Init();
Expand Down

0 comments on commit 77ab591

Please sign in to comment.