Version: 1.0.40
Release: 1
Group: Applications
-License: Flora-1.1
+License: Apache-2.0
Source0: %{name}-%{version}.tar.gz
%if "%{?tizen_profile_name}" == "wearable" || "%{?tizen_profile_name}" == "tv"
%package -n org.tizen.video-player
Summary: video file video-player.
Group: Applications
-License: Flora-1.1
+License: Apache-2.0
%description -n org.tizen.video-player
}
char szValue[4] = { 0, };
-
- snprintf(szValue, 4, "%0.1f", (double) pPlaySpeedPopup->fSpeedVal);
- elm_object_part_text_set(pPlaySpeedPopup->pLayout, "elm.text.title",
- szValue);
-
+ if(pPlaySpeedPopup->fSpeedVal > 0.94999999 && pPlaySpeedPopup->fSpeedVal <= 1.05000001 ) {
+ elm_object_part_text_set(pPlaySpeedPopup->pLayout, "elm.text.title", "1");
+ } else {
+ snprintf(szValue, 4, "%0.1f", (double) pPlaySpeedPopup->fSpeedVal);
+ elm_object_part_text_set(pPlaySpeedPopup->pLayout, "elm.text.title", szValue);
+ }
}
/**
Evas_Object *pObj = NULL;
pObj = elm_button_add(pParent);
- elm_object_style_set(pObj, "popup_button/default");
+ elm_object_style_set(pObj, "border");
elm_object_domain_translatable_text_set(pObj, VP_SYS_STR_PREFIX,
VP_PLAY_STRING_COM_CANCEL);
elm_object_part_content_set(pParent, "button1", pObj);
elm_object_style_set(toolbar, "tabbar");
elm_toolbar_shrink_mode_set(toolbar, ELM_TOOLBAR_SHRINK_EXPAND);
elm_toolbar_transverse_expanded_set(toolbar, EINA_TRUE);
+ elm_toolbar_select_mode_set(toolbar, ELM_OBJECT_SELECT_MODE_ALWAYS);
g_pToolbarItemData.videos_item = elm_toolbar_item_append(toolbar, NULL, TOOLBAR_BUTTON_VIDEOS, toolbar_videos_item_cb, NULL);
g_pToolbarItemData.folders_item = elm_toolbar_item_append(toolbar, NULL, TOOLBAR_BUTTOn_FOLDERS, toolbar_folders_item_cb, NULL);